From f0cbd2b45bd6e3f7440d1a69413d6c122d417484 Mon Sep 17 00:00:00 2001 From: Sebastian Hildebrandt Date: Mon, 17 Jun 2019 06:44:50 +0200 Subject: [PATCH] type definitions fix --- CHANGELOG.md | 1 + docs/history.html | 5 +++++ docs/index.html | 2 +- lib/index.d.ts | 6 +++--- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06f284e..293a6db 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.11.4 | 2019-06-17 | type definitions bug fix | | 4.11.3 | 2019-06-16 | `graphics()` optimization windows | | 4.11.2 | 2019-06-16 | `wifiNetworks()` bug fixes | | 4.11.1 | 2019-06-15 | updated docs | diff --git a/docs/history.html b/docs/history.html index b3ca60c..574427a 100644 --- a/docs/history.html +++ b/docs/history.html @@ -83,6 +83,11 @@ + + 4.11.4 + 2019-06-17 + type definitions bug fix + 4.11.3 2019-06-16 diff --git a/docs/index.html b/docs/index.html index 3aa6480..e97b826 100644 --- a/docs/index.html +++ b/docs/index.html @@ -168,7 +168,7 @@
systeminformation
-
Current Version: 4.11.3
+
Current Version: 4.11.4
diff --git a/lib/index.d.ts b/lib/index.d.ts index 598597b..b6f43a2 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -89,9 +89,9 @@ export namespace Systeminformation { } interface CpuTemperatureData { - main: string; - cores: string; - max: string; + main: number; + cores: number[]; + max: number; } interface MemData {