UNPKG

@aplus-frontend/ui

Version:

21 lines (20 loc) 841 B
import { default as Card } from './components/card/index.vue'; import { default as Divider } from './components/divider/index.vue'; import { default as Title } from './components/title/index.vue'; import { default as Statistic } from './components/statistic/index.vue'; import { default as StatisticCard } from './statistic-card'; import { default as Operation } from './components/operation/index.vue'; export type ApProCardType = typeof Card & { isProCard: boolean; Divider: typeof Divider; Title: typeof Title; }; export type ApStatisticCardType = typeof StatisticCard & { isProCard: boolean; Divider: typeof Divider; Statistic: typeof Statistic; Operation: typeof Operation; }; declare const ApProCard: ApProCardType; declare const ApStatisticCard: ApStatisticCardType; export { ApProCard, ApStatisticCard };