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) 952 B
import { SvelteComponentTyped } from "svelte"; import type { Actions } from '../actions/multi'; declare const __propDef: { props: { [x: string]: any; value?: string; id?: any; actions?: Actions<HTMLInputElement | HTMLTextAreaElement>; inputEl?: HTMLInputElement | null; mask?: string; replace?: string; accept?: string; placeholder?: string; }; events: { keydown: KeyboardEvent; keypress: KeyboardEvent; input: Event; focus: FocusEvent; blur: CustomEvent<any>; change: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type InputProps = typeof __propDef.props; export type InputEvents = typeof __propDef.events; export type InputSlots = typeof __propDef.slots; export default class Input extends SvelteComponentTyped<InputProps, InputEvents, InputSlots> { } export {};