UNPKG

svelte-ux

Version:

- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`

34 lines (33 loc) 879 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; id?: string; value?: any; checked?: boolean; indeterminate?: boolean; disabled?: boolean; circle?: boolean; size?: 'xs' | 'sm' | 'md' | 'lg'; classes?: { root?: string; checkbox?: string; label?: string; icon?: string; }; }; events: { change: Event; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type CheckboxProps = typeof __propDef.props; export type CheckboxEvents = typeof __propDef.events; export type CheckboxSlots = typeof __propDef.slots; export default class Checkbox extends SvelteComponentTyped<CheckboxProps, CheckboxEvents, CheckboxSlots> { } export {};