- Fix router import path in main.js - Handle Django REST Framework pagination format in API calls - Add getTemplates function to project API - Restart frontend development server
7 lines
227 B
TypeScript
7 lines
227 B
TypeScript
//#region ../../packages/hooks/use-timeout/index.d.ts
|
|
declare function useTimeout(): {
|
|
registerTimeout: (fn: (...args: any[]) => any, delay: number) => void;
|
|
cancelTimeout: () => void;
|
|
};
|
|
//#endregion
|
|
export { useTimeout }; |