import STYLE_CONFIG from '@/config/style'; export interface ResDataType { code: number; data: any; } export interface MenuRoute { path: string; title?: string; icon?: string; children: MenuRoute[]; } export type ModeType = 'dark' | 'light'; export type SettingType = typeof STYLE_CONFIG; export type ClassName = { [className: string]: any } | ClassName[] | string;