UNPKG

@carbon/charts-svelte

Version:
36 lines (35 loc) 903 B
import { SvelteComponentTyped } from 'svelte' import { AlluvialChart as AlluvialChartCore, type AlluvialChartOptions, type ChartTabularData } from '@carbon/charts' declare const __propDef: { props: { [x: string]: any options: AlluvialChartOptions data: ChartTabularData chart?: AlluvialChartCore | 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 AlluvialChartProps = typeof __propDef.props export type AlluvialChartEvents = typeof __propDef.events export type AlluvialChartSlots = typeof __propDef.slots export default class AlluvialChart extends SvelteComponentTyped< AlluvialChartProps, AlluvialChartEvents, AlluvialChartSlots > {} export {}