This commit is contained in:
有来技术
2021-11-20 23:59:45 +08:00
parent 8f1a7c7a61
commit 0091a5fab2
20 changed files with 908 additions and 93 deletions

View File

@@ -8,7 +8,16 @@ export interface UserState {
}
export interface AppState {
device: string,
sidebar: {
opened: boolean,
withoutAnimation: boolean
}
}
// 顶级类型声明
export interface RootStateTypes {
user: UserState
user: UserState,
app:AppState
}