UNPKG

@rbxts/hook-bag

Version:

Collection of custom roact hooks

14 lines (12 loc) 285 B
import { HookCreator } from "./"; /** * A shortcut for using useDebounce with a string. * * @param time The time to wait. * @param text The text. */ declare function useDebouncedText( time: number, text: string ): HookCreator<string>; export = useDebouncedText;