UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

16 lines (15 loc) 407 B
interface UseDelayedOnChangeState { value: any; setValue: (newVal: any) => void; onChange: (newVal: any) => void; onFocus: () => void; onBlur: () => void; onConfirm: () => void; } export declare function useDelayedOnChange(props: { defaultValue?: any; value: any; onChange?: (value: any) => void; filter?: (value: any) => any; }): UseDelayedOnChangeState; export {};