UNPKG

svelte-tuicss

Version:

Svelte component library for the Tuicss UI framework.

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