We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 609bdf3 commit 3ffbb90Copy full SHA for 3ffbb90
typings/settings.d.ts
@@ -0,0 +1,26 @@
1
+
2
+declare type fileBrowserSettings = {
3
+ showHiddenFiles: string;
4
+ sortByName: string;
5
+};
6
7
+declare type searchAndFindSettings = {
8
+ wrap: boolean;
9
+ caseSensitive: boolean;
10
+ regExp: boolean;
11
12
13
+declare class Settings {
14
+ update(
15
+ settings?: { [key: string]: any } | boolean,
16
+ showToast?: boolean,
17
+ saveFile?: boolean
18
+ ): Promise<void>;
19
+ reset(setting?: string): Promise<boolean>;
20
+ on(event: `update:${string}` | `update:${string}:after` | 'reset', callback: () => void): void;
21
+ off(event: 'update' | 'reset', callback: () => void): void;
22
+ get(key: string): any;
23
24
+ applyAnimationSetting(): Promise<void>;
25
+ applyLangSetting(): Promise<void>;
26
+}
0 commit comments