UNPKG

svelte-tuicss

Version:

Svelte component library for the Tuicss UI framework.

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