UNPKG

@carbon/charts-svelte

Version:
36 lines (35 loc) 927 B
import { SvelteComponentTyped } from 'svelte' import { ChoroplethChart as ChoroplethChartCore, type ChoroplethChartOptions, type ChartTabularData } from '@carbon/charts' declare const __propDef: { props: { [x: string]: any options: ChoroplethChartOptions data: ChartTabularData chart?: ChoroplethChartCore | 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 ChoroplethChartProps = typeof __propDef.props export type ChoroplethChartEvents = typeof __propDef.events export type ChoroplethChartSlots = typeof __propDef.slots export default class ChoroplethChart extends SvelteComponentTyped< ChoroplethChartProps, ChoroplethChartEvents, ChoroplethChartSlots > {} export {}