Files
oh-my-opencode/dist/tools/delegate-task/sync-result-fetcher.d.ts
T
2026-03-14 04:56:50 +00:00

9 lines
253 B
TypeScript

import type { OpencodeClient } from "./types";
export declare function fetchSyncResult(client: OpencodeClient, sessionID: string, anchorMessageCount?: number): Promise<{
ok: true;
textContent: string;
} | {
ok: false;
error: string;
}>;