UNPKG

@jimmyverburgt/svelte-input-otp

Version:

One time passcode Input for svelte. Accessible & unstyled.

18 lines (17 loc) 591 B
import { SvelteComponent } from "svelte"; import type { inputProps } from './types.js'; declare const __propDef: { props: inputProps; events: { [evt: string]: CustomEvent<any>; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type InputOtpInputProps = typeof __propDef.props; export type InputOtpInputEvents = typeof __propDef.events; export type InputOtpInputSlots = typeof __propDef.slots; export default class InputOtpInput extends SvelteComponent<InputOtpInputProps, InputOtpInputEvents, InputOtpInputSlots> { } export {};