Make the linter happy.

This commit is contained in:
Paul
2021-08-05 14:47:00 +01:00
parent 5930415c05
commit 55e00bf93f
106 changed files with 1083 additions and 5554 deletions

4
src/globals.d.ts vendored
View File

@@ -18,10 +18,12 @@ declare interface Window {
relaunch();
getConfig(): NativeConfig;
set(key: keyof NativeConfig, value: any);
set(key: keyof NativeConfig, value: unknown);
getAutoStart(): Promise<boolean>;
enableAutoStart(): Promise<void>;
disableAutoStart(): Promise<void>;
};
}
declare const Fragment = preact.Fragment;