UNPKG

@rbxts/hook-bag

Version:

Collection of custom roact hooks

11 lines (9 loc) 211 B
import { HookCreator } from "./"; /** * Simply returns the previous state. * @param value The state. */ declare function usePrevious<T>( value: T ): HookCreator<T | undefined>; export = usePrevious;