diff --git a/CHANGELOG.md b/CHANGELOG.md index 35a21f2..0e983ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 4.14.10 | 2019-10-01 | type definitions fix memLayout | | 4.14.9 | 2019-10-01 | `processLoad()` fix windows | | 4.14.8 | 2019-08-22 | `parseDateTime()` fix coding error | | 4.14.7 | 2019-08-22 | `battery()` windows acconnected improvement | diff --git a/docs/history.html b/docs/history.html index 3f9c161..a28aaa6 100644 --- a/docs/history.html +++ b/docs/history.html @@ -83,6 +83,11 @@ + + 4.14.10 + 2019-10-01 + type definitions bug fix memLayout + 4.14.9 2019-10-01 diff --git a/docs/index.html b/docs/index.html index bbfcd6a..995fe4e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -168,7 +168,7 @@
systeminformation
-
Current Version: 4.14.9
+
Current Version: 4.14.10
@@ -191,7 +191,7 @@
-
9,213
+
9,273
Lines of code
@@ -199,7 +199,7 @@
Downloads last month
-
184
+
192
Dependends
diff --git a/lib/index.d.ts b/lib/index.d.ts index 73b8e9a..dd821ee 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -626,7 +626,7 @@ export function currentLoad(cb?: (data: Systeminformation.CurrentLoadData) => an export function fullLoad(cb?: (data: number) => any): Promise; export function mem(cb?: (data: Systeminformation.MemData) => any): Promise; -export function memLayout(cb?: (data: Systeminformation.MemLayoutData) => any): Promise; +export function memLayout(cb?: (data: Systeminformation.MemLayoutData[]) => any): Promise; export function battery(cb?: (data: Systeminformation.BatteryData) => any): Promise; export function graphics(cb?: (data: Systeminformation.GraphicsData) => any): Promise;