UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

10 lines 342 B
//#region src/hooks/use-interval/index.d.ts /** * `useInterval` is a custom hook that runs a function at a specified interval. * * @see https://yamada-ui.com/docs/hooks/use-interval */ declare const useInterval: (callback: () => void, delay: null | number) => void; //#endregion export { useInterval }; //# sourceMappingURL=index.d.ts.map