UNPKG

reablocks

Version:
11 lines (9 loc) 373 B
import { InputProps, InputRef } from '../Input'; import { default as React } from 'react'; export interface DebouncedInputProps extends InputProps { /** * The debounce time in milliseconds. Defaults to 100. */ debounce?: number; } export declare const DebouncedInput: React.ForwardRefExoticComponent<DebouncedInputProps & React.RefAttributes<InputRef>>;