UNPKG

hooks-me

Version:

<div align="center"> <h1>hooks-me</h1> <div>React useful hooks.</div>

4 lines (3 loc) 206 B
declare type ReturnType<T> = [T, (value: T) => void, boolean]; declare const useValidatedState: <T>(initialValue: T, validator: (newValue: T) => boolean) => ReturnType<T>; export default useValidatedState;