16 lines
527 B
TypeScript
16 lines
527 B
TypeScript
export enum LocalPrefKey {
|
|
ActiveThemes = 'activeThemes',
|
|
UseSystemColorScheme = 'useSystemColorScheme',
|
|
UseTranslucentUI = 'useTranslucentUI',
|
|
AutoLightThemeIdentifier = 'autoLightThemeIdentifier',
|
|
AutoDarkThemeIdentifier = 'autoDarkThemeIdentifier',
|
|
}
|
|
|
|
export type LocalPrefValue = {
|
|
[LocalPrefKey.ActiveThemes]: string[]
|
|
[LocalPrefKey.UseSystemColorScheme]: boolean
|
|
[LocalPrefKey.UseTranslucentUI]: boolean
|
|
[LocalPrefKey.AutoLightThemeIdentifier]: string
|
|
[LocalPrefKey.AutoDarkThemeIdentifier]: string
|
|
}
|