diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6434010..13cc8cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -90,6 +90,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
| Version | Date | Comment |
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
+| 5.27.9 | 2025-09-13 | `typings` fsOpenFiles typings fixed |
| 5.27.8 | 2025-08-25 | `disklayout()` fixed catch error (macOS) |
| 5.27.7 | 2025-06-28 | `time()` fixed Intl issue |
| 5.27.6 | 2025-06-20 | `system()` added model (freebsd) |
diff --git a/docs/history.html b/docs/history.html
index 01a2422..82e0598 100644
--- a/docs/history.html
+++ b/docs/history.html
@@ -57,6 +57,11 @@
+
+ | 5.27.9 |
+ 2025-09-13 |
+ typings fsOpenFiles typings fix |
+
| 5.27.8 |
2025-08-25 |
diff --git a/docs/index.html b/docs/index.html
index a2f9599..5753c6b 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -170,7 +170,7 @@
systeminformation
- 3New Version: 5.27.8
+ 3New Version: 5.27.9
@@ -212,7 +212,7 @@
Downloads last month
diff --git a/lib/index.d.ts b/lib/index.d.ts
index dbeed40..e38786f 100644
--- a/lib/index.d.ts
+++ b/lib/index.d.ts
@@ -984,7 +984,7 @@ export function graphics(cb?: (data: Systeminformation.GraphicsData) => any): Pr
export function fsSize(drive?: string, cb?: (data: Systeminformation.FsSizeData[]) => any): Promise;
export function fsSize(cb?: (data: Systeminformation.FsSizeData[]) => any): Promise;
-export function fsOpenFiles(cb?: (data: Systeminformation.FsOpenFilesData[]) => any): Promise;
+export function fsOpenFiles(cb?: (data: Systeminformation.FsOpenFilesData) => any): Promise;
export function blockDevices(cb?: (data: Systeminformation.BlockDevicesData[]) => any): Promise;
export function fsStats(cb?: (data: Systeminformation.FsStatsData) => any): Promise;
export function disksIO(cb?: (data: Systeminformation.DisksIoData) => any): Promise;