vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
19 lines (16 loc) • 519 B
TypeScript
import { DefineComponent } from 'vue';
export type {
VueUiHistoryPlotDatasetItem,
VueUiHistoryPlotConfig,
VueUiHistoryPlotDatapoint,
VueUiHistoryPlotDatapointEvent,
VueUiHistoryPlotDatpointSeries,
VueUiHistoryPlotExpose,
VueUiHistoryPlotEvent
} from "./vue-data-ui";
declare const VueUiHistoryPlot: DefineComponent<{
config?: VueUiHistoryPlotConfig;
dataset: VueUiHistoryPlotDatasetItem[];
}, VueUiHistoryPlotExpose>;
export default VueUiHistoryPlot;
export { VueUiHistoryPlot };