UNPKG

agnostic-svelte

Version:
60 lines (59 loc) 1.55 kB
/** @typedef {typeof __propDef.props} ChoiceInputProps */ /** @typedef {typeof __propDef.events} ChoiceInputEvents */ /** @typedef {typeof __propDef.slots} ChoiceInputSlots */ export default class ChoiceInput extends SvelteComponentTyped<{ [x: string]: any; id: any; type?: string; size?: string; isDisabled?: any; isSkinned?: boolean; isFieldset?: boolean; isInline?: boolean; isInvalid?: boolean; options?: any[]; disabledOptions?: any[]; checkedOptions?: any[]; legendLabel?: string; checked?: any[]; }, { blur: FocusEvent; input: Event; click: MouseEvent; focus: FocusEvent; } & { [evt: string]: CustomEvent<any>; }, {}> { } export type ChoiceInputProps = typeof __propDef.props; export type ChoiceInputEvents = typeof __propDef.events; export type ChoiceInputSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; id: any; type?: string; size?: string; isDisabled?: any; isSkinned?: boolean; isFieldset?: boolean; isInline?: boolean; isInvalid?: boolean; options?: any[]; disabledOptions?: any[]; checkedOptions?: any[]; legendLabel?: string; checked?: any[]; }; events: { blur: FocusEvent; input: Event; click: MouseEvent; focus: FocusEvent; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};