export * from './funcode' export * from './echarts' export * from './theme' export * from './language' /** * 枚举类型 */ export interface EnumType { label: string; value: number; } /** * 钻石类型 */ export enum Category { Diamonds = 1, // 成批裸钻 Diamond = 2, // 单颗裸钻 Rough = 3, // 成批毛坯 Jewelry = 4, // 钻石首饰 Fancy = 5, // 单颗彩钻 }