svelte-tuicss
Version:
Svelte component library for the Tuicss UI framework.
20 lines (19 loc) • 645 B
TypeScript
import { SvelteComponent } from "svelte";
import type { Background, LightBackground, DarkBackground } from '../enums.js';
declare const __propDef: {
props: {
color: Background | LightBackground | DarkBackground;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type TuiBackgroundProps = typeof __propDef.props;
export type TuiBackgroundEvents = typeof __propDef.events;
export type TuiBackgroundSlots = typeof __propDef.slots;
export default class TuiBackground extends SvelteComponent<TuiBackgroundProps, TuiBackgroundEvents, TuiBackgroundSlots> {
}
export {};