updated typescript typings

This commit is contained in:
Sebastian Hildebrandt 2019-03-01 15:36:50 +01:00
parent 96f8382731
commit b79c518b77
4 changed files with 8 additions and 1 deletions

View File

@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page.
| Version | Date | Comment |
| -------------- | -------------- | -------- |
| 4.0.14 | 2019-03-01 | updated typescript typings |
| 4.0.13 | 2019-03-01 | `diskLayout()` added device (/dev/sda...) linux, mac |
| 4.0.12 | 2019-03-01 | `diskLayout()` linux rewritten - better detection |
| 4.0.11 | 2019-02-23 | `users()` fix windows (time), added @ts-check |

View File

@ -80,6 +80,11 @@
</tr>
</thead>
<tbody>
<tr>
<th scope="row">4.0.14</th>
<td>2019-03-01</td>
<td><span class="code">updated typescript typings</td>
</tr>
<tr>
<th scope="row">4.0.13</th>
<td>2019-03-01</td>

View File

@ -170,7 +170,7 @@
<img class="logo" src="assets/logo.png">
<div class="title">systeminformation</div>
<div class="subtitle"><span id="typed"></span></div>
<div class="version">Current Version: <span id="version">4.0.13</span></div>
<div class="version">Current Version: <span id="version">4.0.14</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">

1
lib/index.d.ts vendored
View File

@ -120,6 +120,7 @@ export namespace Systeminformation {
}
interface DiskLayoutData {
device: string;
type: string;
name: string;
vendor: string;