Type alias DebouncedStateProtocol<S>

DebouncedStateProtocol<S>: [currState: S, nextState: S, setState: Dispatch<SetStateAction<S>>]

The protocol returned by the useDebouncedState hook.

Type Parameters

  • S

    The type of stateful value.