Files
kt-financial-system/packages/business/universal-ui/src/dashboard/typings.ts
jinmao88 6f0c05dd50 dashboard (#6)
* feat(dashboard): 增加dashboard示例

* feat(chart-ui): 增加图表UI组件库

* feat(dashboard): 完善dashboard示例
2024-06-23 13:41:02 +08:00

18 lines
279 B
TypeScript

interface CardItem {
title: string;
extra: string;
leftContent: string;
rightContent: string;
color?: string;
leftFooter: string;
rightFooter: string;
}
interface ChartItem {
name: string;
title: string;
options: any;
}
export type { CardItem, ChartItem };