UNPKG

@e-group/hooks

Version:

eGroup team react-hooks that share across projects.

7 lines (6 loc) 215 B
declare type Callback = () => void; /** * https://overreacted.io/making-setinterval-declarative-with-react-hooks/ */ export default function useInterval(callback: Callback, delay: number | null): void; export {};