UNPKG

@wordpress/compose

Version:
8 lines 355 B
/** * Helper hook for input fields that need to debounce the value before using it. * * @param defaultValue The default value to use. * @return The input value, the setter and the debounced input value. */ export default function useDebouncedInput(defaultValue?: string): [string, (value: string) => void, string]; //# sourceMappingURL=index.d.ts.map