-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathstorage.d.ts
38 lines (37 loc) · 904 Bytes
/
storage.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/** The storage namespace */
declare namespace StorageType {
interface Session {
/** The theme color */
themeColor: string;
// /**
// * the theme settings
// */
// themeSettings: App.Theme.ThemeSetting;
}
interface Local {
/** The i18n language */
lang: App.I18n.LangType;
/** The token */
token: string;
/** The refresh token */
refreshToken: string;
/** The expires in time */
token_expires_in: string;
/** The user info */
userInfo: Api.Auth.UserInfo;
/** The theme color */
themeColor: string;
/** The theme settings */
themeSettings: App.Theme.ThemeSetting;
/**
* The override theme flags
*
* The value is the build time of the project
*/
overrideThemeFlag: string;
/** The global tabs */
globalTabs: App.Global.Tab[];
/** loading logo */
logoLoading: string;
}
}