svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
29 lines (28 loc) • 760 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
value: any;
classes?: {
root?: string;
option?: string;
indicator?: string;
} | undefined;
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
selected: boolean;
};
};
};
export type ToggleOptionProps = typeof __propDef.props;
export type ToggleOptionEvents = typeof __propDef.events;
export type ToggleOptionSlots = typeof __propDef.slots;
export default class ToggleOption extends SvelteComponentTyped<ToggleOptionProps, ToggleOptionEvents, ToggleOptionSlots> {
}
export {};