vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
14 lines (11 loc) • 341 B
TypeScript
import { DefineComponent } from 'vue';
export type {
VueUiCarouselTableDataset,
VueUiCarouselTableConfig,
} from "./vue-data-ui";
declare const VueUiCarouselTable: DefineComponent<{
config?: VueUiCarouselTableConfig;
dataset: VueUiCarouselTableDataset;
}>;
export default VueUiCarouselTable;
export { VueUiCarouselTable };