Type Alias DebouncedInputProps

DebouncedInputProps: OverrideProps<"input", {
    debounce?: number;
    onChange: ((ev: DebouncedInputChangeEvent) => void);
    value: string;
}, "defaultValue" | "onInput" | "onBlur">

Type declaration

  • Optionaldebounce?: number

    The delay in milliseconds before the onChange event is triggered. This delay is reset with each new input event.

  • onChange: ((ev: DebouncedInputChangeEvent) => void)

    Triggers after debounce milliseconds following an input change or immediately when the input loses focus.

  • value: string