UNPKG

react-use-stopwatch

Version:
9 lines (8 loc) 279 B
declare type StopwatchAction = () => void; declare type StopwatchTime = { time: number; format: string; }; declare type StopwatchType = () => [StopwatchTime, StopwatchAction, StopwatchAction, StopwatchAction]; export declare const useStopwatch: StopwatchType; export {};