UNPKG

@ducor/react

Version:

admin template ui interface

8 lines (7 loc) 253 B
/** * `useInterval` is a custom hook that runs a function at a specified interval. * * @see Docs https://ui.ducor.net/hooks/use-interval */ declare const useInterval: (callback: () => void, delay: null | number) => void; export default useInterval;