UNPKG

@jimmyverburgt/svelte-input-otp

Version:

One time passcode Input for svelte. Accessible & unstyled.

22 lines (21 loc) 652 B
import { SvelteComponent } from "svelte"; import { type rootProps } from './types.js'; declare const __propDef: { props: rootProps; events: { change: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; exports?: {} | undefined; bindings?: string | undefined; }; export type InputOtpRootProps = typeof __propDef.props; export type InputOtpRootEvents = typeof __propDef.events; export type InputOtpRootSlots = typeof __propDef.slots; export default class InputOtpRoot extends SvelteComponent<InputOtpRootProps, InputOtpRootEvents, InputOtpRootSlots> { } export {};