diff --git a/CHANGELOG.md b/CHANGELOG.md index b0bf170..07f4f97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -77,6 +77,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 5.7.11 | 2021-07-27 | typescript typings fix `bluetoothDevices()` | | 5.7.10 | 2021-07-26 | typescript typings fix `processLoad()` | | 5.7.9 | 2021-07-25 | `uuid()` better regedit path detection (win) | | 5.7.8 | 2021-07-16 | `battery()` fix designedCapacity (win, linux), fix catch error | diff --git a/docs/history.html b/docs/history.html index 1596649..1a955cf 100644 --- a/docs/history.html +++ b/docs/history.html @@ -56,6 +56,11 @@ + + 5.7.11 + 2021-07-27 + typescript typings fix bluetoothDevices() + 5.7.10 2021-07-26 diff --git a/docs/index.html b/docs/index.html index 9dd6543..4971a68 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.7.10
+
New Version: 5.7.11
@@ -203,7 +203,7 @@
-
14,473
+
14,481
Lines of code
@@ -211,7 +211,7 @@
Downloads last month
-
447
+
448
Dependents
diff --git a/lib/index.d.ts b/lib/index.d.ts index 423512e..221965a 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -938,7 +938,7 @@ export function usb(cb?: (data: Systeminformation.UsbData[]) => any): Promise any): Promise; -export function bluetoothDevices(cb?: (data: Systeminformation.BlockDevicesData[]) => any): Promise; +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;