UNPKG

@e-group/hooks

Version:

eGroup team react-hooks that share across projects.

6 lines (5 loc) 244 B
import { Dispatch, SetStateAction } from 'react'; export declare type UseCountDownOptions = { min?: number; }; export default function useCountDown(value: number, options?: UseCountDownOptions): [number, Dispatch<SetStateAction<boolean>>];