flowbite-svelte
Version:
Flowbite components for Svelte
27 lines (26 loc) • 773 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type ApexCharts from 'apexcharts';
import type { ApexOptions } from 'apexcharts';
declare const __propDef: {
props: {
options: ApexOptions;
class?: string;
chart?: ApexCharts;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ChartProps = typeof __propDef.props;
export type ChartEvents = typeof __propDef.events;
export type ChartSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let options: ApexOptions;
* @prop export let chart: ApexCharts | undefined = undefined;
*/
export default class Chart extends SvelteComponentTyped<ChartProps, ChartEvents, ChartSlots> {
}
export {};