mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-24 06:17:27 +00:00
5 lines
149 B
TypeScript
5 lines
149 B
TypeScript
export declare function useTimeout(): {
|
|
registerTimeout: (fn: (...args: any[]) => any, delay: number) => void;
|
|
cancelTimeout: () => void;
|
|
};
|