vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
35 lines (31 loc) • 717 B
TypeScript
import type { DefineComponent } from 'vue';
import type {
VueUiAnnotatorConfig,
VueUiAnnotatorDataset,
VueUiAnnotatorProps,
VueUiAnnotatorEmits,
VueUiAnnotatorEmitToggleOpenState,
VueUiAnnotatorEmitSaveAnnotations,
VueUiAnnotatorShape,
} from 'vue-data-ui';
export type {
VueUiAnnotatorConfig,
VueUiAnnotatorDataset,
VueUiAnnotatorProps,
VueUiAnnotatorEmits,
VueUiAnnotatorEmitToggleOpenState,
VueUiAnnotatorEmitSaveAnnotations,
VueUiAnnotatorShape,
};
declare const VueUiAnnotator: DefineComponent<
VueUiAnnotatorProps,
{},
{},
{},
{},
{},
{},
VueUiAnnotatorEmits
>;
export default VueUiAnnotator;
export { VueUiAnnotator };