Skip to content

Commit

Permalink
fix typescript typings
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhildebrandt committed Nov 3, 2022
1 parent 7a525d0 commit b06b861
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x, 17.x, 18.x, 19.x]
node-version: [10.x, 12.x, 14.x, 16.x, 17.x, 18.x, 19.x]
include:
- os: macos-latest
node-version: 14.x
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -80,6 +80,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.

| Version | Date | Comment |
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
| 5.12.12 | 2022-11-03 | fix typescript typings |
| 5.12.11 | 2022-10-27 | `wifiInterfaces()`, `wifiConnections` improved parsing (linux) |
| 5.12.10 | 2022-10-25 | `bluetooth()` adapted parsing to accept also new profile (mac OS) |
| 5.12.9 | 2022-10-24 | fix typescript typings, code cleanup, docs updated |
Expand Down
7 changes: 6 additions & 1 deletion docs/history.html
Expand Up @@ -57,6 +57,11 @@ <h3>Full version history</h3>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">5.12.12</th>
<td>2022-11-03</td>
<td>fix typescript typings</td>
</tr>
<tr>
<th scope="row">5.12.11</th>
<td>2022-10-27</td>
Expand Down Expand Up @@ -2784,4 +2789,4 @@ <h3>Full version history</h3>

</body>

</html>
</html>
2 changes: 1 addition & 1 deletion docs/index.html
Expand Up @@ -170,7 +170,7 @@
<img class="logo" src="assets/logo.png" alt="logo">
<div class="title">systeminformation</div>
<div class="subtitle"><span id="typed"></span>&nbsp;</div>
<div class="version">New Version: <span id="version">5.12.11</span></div>
<div class="version">New Version: <span id="version">5.12.12</span></div>
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
</div>
<div class="down">
Expand Down
4 changes: 2 additions & 2 deletions lib/index.d.ts
Expand Up @@ -499,8 +499,8 @@ export namespace Systeminformation {
operstate: string;
type: string;
duplex: string;
mtu: number;
speed: number;
mtu: number | null;
speed: number | null;
dhcp: boolean;
dnsSuffix: string;
ieee8021xAuth: string;
Expand Down

0 comments on commit b06b861

Please sign in to comment.