diff --git a/CHANGELOG.md b/CHANGELOG.md index e346be1..0e3451c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,6 +82,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | Version | Date | Comment | | ------- | ---------- | --------------------------------------------------------------------------------------------------- | +| 5.15.1 | 2022-11-29 | fix typescript typings | | 5.15.0 | 2022-11-29 | `blockDevices()` added device (win, linux, mac OS) | | 5.14.4 | 2022-11-21 | `osInfo()` improved uefi parsing (FreeBSD) | | 5.14.3 | 2022-11-20 | `graphics()` multi monitor refresh rate (windows) | diff --git a/docs/history.html b/docs/history.html index dab75a5..9ea0fe6 100644 --- a/docs/history.html +++ b/docs/history.html @@ -57,6 +57,11 @@ + + 5.15.1 + 2022-11-29 + typings fixed typo + 5.15.0 2022-11-29 diff --git a/docs/index.html b/docs/index.html index 146be2b..868d86d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.15.0
+
New Version: 5.15.1
@@ -403,4 +403,4 @@ - \ No newline at end of file + diff --git a/lib/index.d.ts b/lib/index.d.ts index 000087a..7c0d1dc 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -1010,7 +1010,7 @@ export function audio(cb?: (data: Systeminformation.AudioData[]) => any): Promis export function bluetoothDevices(cb?: (data: Systeminformation.BluetoothDeviceData[]) => any): Promise; export function getStaticData(cb?: (data: Systeminformation.StaticData) => any): Promise; -export function getDynamicData(srv?: string, iface?: string, cb?: (data: any) => any): Promise; +export function getDynamicData(srv?: string, iface?: string, cb?: (data: any) => any): Promise; export function getAllData(srv?: string, iface?: string, cb?: (data: any) => any): Promise; export function get(valuesObject: any, cb?: (data: any) => any): Promise; export function observe(valuesObject: any, interval: number, cb?: (data: any) => any): number;