mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-03 14:56:35 +08:00
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
import { ThemeEnum } from '@/enums/styleEnum'
|
|
|
|
export interface DesignStateType {
|
|
// 是否是深色主题
|
|
darkTheme: boolean
|
|
// 主题名称
|
|
themeName: ThemeEnum
|
|
//系统风格
|
|
appTheme: string
|
|
//系统内置风格
|
|
appThemeList: string[]
|
|
}
|