@carbon/charts-svelte
Version:
Carbon Charts component library for Svelte
36 lines (35 loc) • 879 B
TypeScript
import { SvelteComponentTyped } from 'svelte'
import {
BubbleChart as BubbleChartCore,
type BubbleChartOptions,
type ChartTabularData
} from '@carbon/charts'
declare const __propDef: {
props: {
[x: string]: any
options: BubbleChartOptions
data: ChartTabularData
chart?: BubbleChartCore | 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 BubbleChartProps = typeof __propDef.props
export type BubbleChartEvents = typeof __propDef.events
export type BubbleChartSlots = typeof __propDef.slots
export default class BubbleChart extends SvelteComponentTyped<
BubbleChartProps,
BubbleChartEvents,
BubbleChartSlots
> {}
export {}