iot-card-plus-ui/packages/business/universal-ui/src/dashboard/typings.ts

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 };