UNPKG

@react-input/core

Version:

The core of the packages included in the `@react-input` scope.

7 lines (6 loc) 247 B
import type { InputOptions } from './types'; export default class Input<T = unknown> { register: (element: HTMLInputElement) => void; unregister: (element: HTMLInputElement) => void; constructor({ init, tracking }: InputOptions<T>); }