flowbite-svelte
Version:
Flowbite components for Svelte
14 lines (13 loc) • 405 B
TypeScript
import "./chart.css";
import { type ChartProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [ChartProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L461)
* ## Props
* @prop options
* @prop class: classname
*/
declare const Chart: import("svelte").Component<ChartProps, {}, "">;
type Chart = ReturnType<typeof Chart>;
export default Chart;