UNPKG

@thy-rathana/nuxt-infinite-scroll

Version:

Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

8 lines (6 loc) 241 B
declare const useTimer: (autoClearSideEffect?: boolean) => { addInterval: (fn: () => void, interval: number, key?: string) => void; addTimer: (fn: () => void, delay: number) => void; timers: Set<number>; }; export { useTimer };