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