UNPKG

@carbon/charts-svelte

Version:
36 lines (35 loc) 855 B
import { SvelteComponentTyped } from 'svelte' import { TreeChart as TreeChartCore, type TreeChartOptions, type ChartTabularData } from '@carbon/charts' declare const __propDef: { props: { [x: string]: any options: TreeChartOptions data: ChartTabularData chart?: TreeChartCore | undefined ref?: HTMLDivElement | undefined } events: { load: CustomEvent<null> update: CustomEvent<{ data: ChartTabularData options: import('@carbon/charts').BaseChartOptions }> destroy: CustomEvent<null> } & { [evt: string]: CustomEvent<any> } slots: {} } export type TreeChartProps = typeof __propDef.props export type TreeChartEvents = typeof __propDef.events export type TreeChartSlots = typeof __propDef.slots export default class TreeChart extends SvelteComponentTyped< TreeChartProps, TreeChartEvents, TreeChartSlots > {} export {}