feat:新增吸附修改的全局设置

This commit is contained in:
mtruning
2022-03-05 22:11:25 +08:00
parent 1028ea0302
commit b2e255bb42
7 changed files with 68 additions and 20 deletions
+2
View File
@@ -2,10 +2,12 @@ export enum SettingStoreEnums {
HIDE_PACKAGE_ONE_CATEGORY = 'hidePackageOneCategory',
CHANGE_LANG_RELOAD = 'changeLangReload',
ASIDE_ALL_COLLAPSED = 'asideAllCollapsed',
CHART_ALIGN_RANGE = 'chartAlignRange',
}
export interface SettingStoreType {
[SettingStoreEnums.HIDE_PACKAGE_ONE_CATEGORY]: boolean
[SettingStoreEnums.CHANGE_LANG_RELOAD]: boolean
[SettingStoreEnums.ASIDE_ALL_COLLAPSED]: boolean
[SettingStoreEnums.CHART_ALIGN_RANGE]: number
}