UNPKG

svelte-tuicss

Version:

Svelte component library for the Tuicss UI framework.

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