Files
oh-my-opencode/dist/hooks/comment-checker/pending-calls.d.ts
T

5 lines
276 B
TypeScript
Raw Normal View History

import type { PendingCall } from "./types";
export declare function startPendingCallCleanup(): void;
export declare function registerPendingCall(callID: string, pendingCall: PendingCall): void;
export declare function takePendingCall(callID: string): PendingCall | undefined;