index.ts 417 B

123456789101112131415161718192021222324
  1. export * from './funcode'
  2. export * from './echarts'
  3. export * from './theme'
  4. export * from './language'
  5. /**
  6. * 枚举类型
  7. */
  8. export interface EnumType {
  9. label: string;
  10. value: number;
  11. }
  12. /**
  13. * 钻石类型
  14. */
  15. export enum Category {
  16. Diamonds = 1, // 成批裸钻
  17. Diamond = 2, // 单颗裸钻
  18. Rough = 3, // 成批毛坯
  19. Jewelry = 4, // 钻石首饰
  20. Fancy = 5, // 单颗彩钻
  21. }