GasWell-front/node_modules/element-plus/lib/hooks/use-timeout/index.d.ts

5 lines
149 B
TypeScript

export declare function useTimeout(): {
registerTimeout: (fn: (...args: any[]) => any, delay: number) => void;
cancelTimeout: () => void;
};