Definition

Pseudocode

useInterval(callback [, interval] [, options]): controls
declare function useInterval(
    callback: IntervalHookCallback, 
    interval?: number, 
    options?: IntervalHookOptions
): IntervalHookResult;

Last updated