UNPKG

svelte-ux

Version:

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

33 lines (32 loc) 820 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; id?: string; value?: any; group?: any; checked?: boolean; disabled?: 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 RadioProps = typeof __propDef.props; export type RadioEvents = typeof __propDef.events; export type RadioSlots = typeof __propDef.slots; export default class Radio extends SvelteComponentTyped<RadioProps, RadioEvents, RadioSlots> { } export {};