UNPKG

@yamada-ui/react

Version:

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

10 lines 372 B
//#region src/hooks/use-timeout/index.d.ts /** * `useTimeout` is a custom hook that executes a function after a specified number of milliseconds. * * @see https://yamada-ui.com/docs/hooks/use-timeout */ declare const useTimeout: (callback: (...args: any[]) => void, delay: null | number) => void; //#endregion export { useTimeout }; //# sourceMappingURL=index.d.ts.map