export interface DevToolsPropsType { onReset: () => void; onClose: () => void; onCopy?: () => void; setState: any; visible: boolean; state: LocalThemeConfigPropsType; /** 是否有表格边框 */ tableBorder?: boolean; /** 是否有斑马纹 */ tableStripe?: boolean; /** 统一样式前缀, 默认ant */ prefixCls?: string; } export interface ProThemeToolsProps { size?: number; color?: string; mode?: 'dev' | 'prd'; cacheTime?: number | boolean; /** 主题配置信息 */ theme?: any; /** icon是否跟随主题色 */ iconFollowTheme?: boolean; /** 是否有表格边框 */ tableBorder?: boolean; /** 是否有斑马纹 */ tableStripe?: boolean; /** 统一样式前缀, 默认ant */ prefixCls?: string; [key: string]: any; } export interface LocalThemeConfigPropsType { zauiBrand?: string; zauiText?: string; zauiFontSize?: string; zauiFormAlign?: string; zauiFormRequiredAfter?: string; zauiFormRequiredBefore?: string; zauiSize?: number; zauiSpaceSizeLg?: string; zauiSpaceSizeMd?: string; /** 大字号模式 */ zauiBigText?: boolean; /** 是否有表格边框 */ zauiTableBorder?: boolean; /** 是否有斑马纹 */ zauiStripe?: boolean; zauiBaseFontSize?: string; }