vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
99 lines (93 loc) • 3.08 kB
TypeScript
import type { DefineComponent, VNodeChild } from 'vue';
import type {
VueUiChestnutDatasetBranchBreakdown,
VueUiChestnutDatasetBranch,
VueUiChestnutDatasetRoot,
VueUiChestnutConfig,
VueUiChestnutExpose,
VueUiChestnutDatapointNut,
VueUiChestnutDatapointBranch,
VueUiChestnutDatapointRoot,
VueUiChestnutProps,
VueUiAnnotatorActionColorSlotProps,
VueUiAnnotatorActionDrawSlotProps,
VueUiAnnotatorActionUndoSlotProps,
VueUiAnnotatorActionRedoSlotProps,
VueUiAnnotatorActionDeleteSlotProps,
VueUiMenuIconSlotProps,
VueUiOptionFullscreenSlotProps,
VueUiOptionAnnotatorSlotProps,
VueUiChestnutSvgSlotProps,
VueUiChestnutLegendSlotProps,
CommonAnnotatorSlots,
VueUiChestnutEmits,
VueUiChestnutEmitSelectRoot,
VueUiChestnutEmitSelectBranch,
VueUiChestnutEmitSelectNut,
VueUiChestnutEmitCopyAlt,
} from 'vue-data-ui';
export type {
VueUiChestnutDatasetBranchBreakdown,
VueUiChestnutDatasetBranch,
VueUiChestnutDatasetRoot,
VueUiChestnutConfig,
VueUiChestnutExpose,
VueUiChestnutDatapointNut,
VueUiChestnutDatapointBranch,
VueUiChestnutDatapointRoot,
VueUiChestnutProps,
VueUiAnnotatorActionColorSlotProps,
VueUiAnnotatorActionDrawSlotProps,
VueUiAnnotatorActionUndoSlotProps,
VueUiAnnotatorActionRedoSlotProps,
VueUiAnnotatorActionDeleteSlotProps,
VueUiMenuIconSlotProps,
VueUiOptionFullscreenSlotProps,
VueUiOptionAnnotatorSlotProps,
VueUiChestnutSvgSlotProps,
VueUiChestnutLegendSlotProps,
CommonAnnotatorSlots,
VueUiChestnutEmits,
VueUiChestnutEmitSelectRoot,
VueUiChestnutEmitSelectBranch,
VueUiChestnutEmitSelectNut,
VueUiChestnutEmitCopyAlt,
};
declare const VueUiChestnutBase: DefineComponent<
VueUiChestnutProps,
{},
{},
{},
{},
{},
{},
VueUiChestnutEmits
>;
export const VueUiChestnut: typeof VueUiChestnutBase & {
new (): VueUiChestnutExpose & {
$slots: CommonAnnotatorSlots & {
['custom-menu-before']?: () => VNodeChild;
['custom-menu-after']?: () => VNodeChild;
menuIcon?: (props: VueUiMenuIconSlotProps) => VNodeChild;
optionPdf?: () => VNodeChild;
optionCsv?: () => VNodeChild;
optionImg?: () => VNodeChild;
optionSvg?: () => VNodeChild;
optionTable?: () => VNodeChild;
optionFullscreen?: (
props: VueUiOptionFullscreenSlotProps,
) => VNodeChild;
optionAnnotator?: (
props: VueUiOptionAnnotatorSlotProps,
) => VNodeChild;
optionAltCopy?: () => VNodeChild;
['chart-background']?: () => VNodeChild;
svg?: (props: VueUiChestnutSvgSlotProps) => VNodeChild;
watermark?: (props: VueUiWatermarkSlotProps) => VNodeChild;
legend?: (props: VueUiChestnutLegendSlotProps) => VNodeChild;
source?: () => VNodeChild;
};
};
};
export default VueUiChestnut;
export { VueUiChestnut };