typings.ts 279 B

1234567891011121314151617
  1. interface CardItem {
  2. title: string;
  3. extra: string;
  4. leftContent: string;
  5. rightContent: string;
  6. color?: string;
  7. leftFooter: string;
  8. rightFooter: string;
  9. }
  10. interface ChartItem {
  11. name: string;
  12. title: string;
  13. options: any;
  14. }
  15. export type { CardItem, ChartItem };