svelte-tuicss
Version:
Svelte component library for the Tuicss UI framework.
25 lines (24 loc) • 707 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
id: string;
label: string;
block?: boolean | undefined;
};
events: {
change: CustomEvent<any>;
input: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type TuiLabeledSelectProps = typeof __propDef.props;
export type TuiLabeledSelectEvents = typeof __propDef.events;
export type TuiLabeledSelectSlots = typeof __propDef.slots;
export default class TuiLabeledSelect extends SvelteComponent<TuiLabeledSelectProps, TuiLabeledSelectEvents, TuiLabeledSelectSlots> {
}
export {};