UNPKG

svelte-tuicss

Version:

Svelte component library for the Tuicss UI framework.

28 lines (27 loc) 716 B
/** @typedef {typeof __propDef.props} TuiLegendProps */ /** @typedef {typeof __propDef.events} TuiLegendEvents */ /** @typedef {typeof __propDef.slots} TuiLegendSlots */ export default class TuiLegend extends SvelteComponent<{ [x: string]: any; }, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type TuiLegendProps = typeof __propDef.props; export type TuiLegendEvents = typeof __propDef.events; export type TuiLegendSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};