Skip to content

Commit 993c261

Browse files
typings: fixed fsOpenFiles typings
1 parent cf76854 commit 993c261

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
9090

9191
| Version | Date | Comment |
9292
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
93+
| 5.27.9 | 2025-09-13 | `typings` fsOpenFiles typings fixed |
9394
| 5.27.8 | 2025-08-25 | `disklayout()` fixed catch error (macOS) |
9495
| 5.27.7 | 2025-06-28 | `time()` fixed Intl issue |
9596
| 5.27.6 | 2025-06-20 | `system()` added model (freebsd) |

docs/history.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ <h3>Full version history</h3>
5757
</tr>
5858
</thead>
5959
<tbody>
60+
<tr>
61+
<th scope="row">5.27.9</th>
62+
<td>2025-09-13</td>
63+
<td><span class="code">typings</span> fsOpenFiles typings fix</td>
64+
</tr>
6065
<tr>
6166
<th scope="row">5.27.8</th>
6267
<td>2025-08-25</td>

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
<img class="logo" src="assets/logo.png" alt="logo">
171171
<div class="title">systeminformation</div>
172172
<div class="subtitle"><span id="typed"></span>&nbsp;</div>
173-
3<div class="version">New Version: <span id="version">5.27.8</span></div>
173+
3<div class="version">New Version: <span id="version">5.27.9</span></div>
174174
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
175175
</div>
176176
<div class="down">
@@ -212,7 +212,7 @@
212212
<div class="title">Downloads last month</div>
213213
</div>
214214
<div class="col-xl-4 col-lg-4 col-md-4 col-12">
215-
<div class="numbers">867</div>
215+
<div class="numbers">865</div>
216216
<div class="title">Dependents</div>
217217
</div>
218218
</div>

lib/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ export function graphics(cb?: (data: Systeminformation.GraphicsData) => any): Pr
984984

985985
export function fsSize(drive?: string, cb?: (data: Systeminformation.FsSizeData[]) => any): Promise<Systeminformation.FsSizeData[]>;
986986
export function fsSize(cb?: (data: Systeminformation.FsSizeData[]) => any): Promise<Systeminformation.FsSizeData[]>;
987-
export function fsOpenFiles(cb?: (data: Systeminformation.FsOpenFilesData[]) => any): Promise<Systeminformation.FsOpenFilesData[]>;
987+
export function fsOpenFiles(cb?: (data: Systeminformation.FsOpenFilesData) => any): Promise<Systeminformation.FsOpenFilesData>;
988988
export function blockDevices(cb?: (data: Systeminformation.BlockDevicesData[]) => any): Promise<Systeminformation.BlockDevicesData[]>;
989989
export function fsStats(cb?: (data: Systeminformation.FsStatsData) => any): Promise<Systeminformation.FsStatsData>;
990990
export function disksIO(cb?: (data: Systeminformation.DisksIoData) => any): Promise<Systeminformation.DisksIoData>;

0 commit comments

Comments
 (0)