@widget-js/core 24.1.1-beta.43 → 24.1.1-beta.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +21 -12
- package/dist/index.d.ts +21 -12
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3186,6 +3186,9 @@ var SystemApiImpl = class extends BaseApi {
|
|
|
3186
3186
|
isMonitorStarted() {
|
|
3187
3187
|
return this.invokeMethod("isMonitorStarted");
|
|
3188
3188
|
}
|
|
3189
|
+
getUptime() {
|
|
3190
|
+
return this.invokeMethod("getUptime");
|
|
3191
|
+
}
|
|
3189
3192
|
};
|
|
3190
3193
|
var SystemApi = new SystemApiImpl();
|
|
3191
3194
|
|