Update runtime.System to make all methods

This commit is contained in:
Lea Anthony
2020-10-23 11:19:38 +11:00
parent 145656bc43
commit 0113fbff4f
7 changed files with 29 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@wails/runtime",
"version": "1.0.9",
"version": "1.0.11",
"description": "Wails V2 Javascript runtime library",
"main": "main.js",
"types": "runtime.d.ts",

View File

@@ -38,8 +38,8 @@ declare const wailsapp__runtime: {
DarkModeEnabled(): Promise<boolean>;
OnThemeChange(callback: (darkModeEnabled: boolean) => void): void;
LogLevel(): Store;
Platform: string;
AppType: string
Platform(): string;
AppType(): string
};
Store: {
New(name: string, defaultValue?: any): Store;