svelte-tuicss
Version:
Svelte component library for the Tuicss UI framework.
28 lines (27 loc) • 706 B
TypeScript
/** @typedef {typeof __propDef.props} TuiGridProps */
/** @typedef {typeof __propDef.events} TuiGridEvents */
/** @typedef {typeof __propDef.slots} TuiGridSlots */
export default class TuiGrid extends SvelteComponent<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type TuiGridProps = typeof __propDef.props;
export type TuiGridEvents = typeof __propDef.events;
export type TuiGridSlots = typeof __propDef.slots;
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};