chore: init read-star monorepo

This commit is contained in:
2026-01-16 13:06:44 +08:00
commit 1e510efe8e
508 changed files with 44803 additions and 0 deletions

43
apps/admin/src/typings/storage.d.ts vendored Normal file
View File

@ -0,0 +1,43 @@
/** 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
/** Fixed sider with mix-menu */
mixSiderFixed: CommonType.YesOrNo
/** The refresh token */
refreshToken: string
/** The theme color */
themeColor: string
/** The dark mode */
darkMode: boolean
/** 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[]
/** The backup theme setting before is mobile */
backupThemeSettingBeforeIsMobile: {
layout: UnionKey.ThemeLayoutMode
siderCollapse: boolean
}
/** The last login user id */
lastLoginUserId: string
}
}