svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
27 lines (26 loc) • 708 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
value: any;
classes?: {
root?: string;
option?: string;
indicator?: string;
};
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
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 {};