export type Locale = { locale: string; // 1. 通用 general: { increase: string; decrease: string; root: string; }; // 2. 按照图表组件 /** 中心文本 */ statistic: { total: string; }; /** 转化率组件 */ conversionTag: { label: string; }; legend?: Record; tooltip?: Record; slider?: Record; scrollbar?: Record; // 3. 按照图表类型 waterfall: { /** 总计或累计值 */ total: string; }; };