Skip to content

Commit 3ffbb90

Browse files
authoredOct 25, 2023
Update settings.d.ts
1 parent 609bdf3 commit 3ffbb90

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎typings/settings.d.ts

+26
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)