Files
oh-my-opencode/dist/hooks/comment-checker/pending-calls.d.ts
T
2026-03-14 04:56:50 +00:00

5 lines
276 B
TypeScript

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;