This commit is contained in:
redphx
2024-12-07 16:48:58 +07:00
parent 557a38214d
commit 4011eb402a
55 changed files with 181 additions and 139 deletions

View File

@@ -1,8 +1,8 @@
export type PreferenceSetting = {
default: any;
optionsGroup?: string;
options?: {[index: string]: string};
multipleOptions?: {[index: string]: string};
options?: { [index: string]: string };
multipleOptions?: { [index: string]: string };
unsupported?: boolean;
unsupportedNote?: string | (() => HTMLElement);
note?: string | (() => HTMLElement);
@@ -17,4 +17,4 @@ export type PreferenceSetting = {
label?: string;
};
export type PreferenceSettings = {[index in PrefKey]: PreferenceSetting};
export type PreferenceSettings = { [index in PrefKey]: PreferenceSetting };