ant-design-x-vue-next
Version:
Ant Design X for Vue — community continuation aligned with @ant-design/x
12 lines (11 loc) • 494 B
TypeScript
import type { App } from 'vue';
import FileCard from './FileCard.vue';
import List from './List.vue';
export type { FileCardProps, FileCardListProps, FileCardListItem, FileCardSpinProps, FileCardSemanticType, FileCardListSemanticType, CardInfo, CardType, PresetIcons, } from './interface';
type FileCardType = typeof FileCard & {
List: typeof List;
install: (app: App) => App;
};
declare const _default: FileCardType;
export default _default;
export { FileCard, List as FileCardList };