mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-14 07:10:43 +08:00
12 lines
375 B
TypeScript
12 lines
375 B
TypeScript
export enum SettingStoreEnums {
|
|
HIDE_PACKAGE_ONE_CATEGORY = 'hidePackageOneCategory',
|
|
CHANGE_LANG_RELOAD = 'changeLangReload',
|
|
ASIDE_ALL_COLLAPSED = 'asideAllCollapsed',
|
|
}
|
|
|
|
export interface SettingStoreType {
|
|
[SettingStoreEnums.HIDE_PACKAGE_ONE_CATEGORY]: boolean
|
|
[SettingStoreEnums.CHANGE_LANG_RELOAD]: boolean
|
|
[SettingStoreEnums.ASIDE_ALL_COLLAPSED]: boolean
|
|
}
|