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

8 lines
316 B
TypeScript

import { pollSyncSession } from "./sync-session-poller";
import { fetchSyncResult } from "./sync-result-fetcher";
export declare const syncContinuationDeps: {
pollSyncSession: typeof pollSyncSession;
fetchSyncResult: typeof fetchSyncResult;
};
export type SyncContinuationDeps = typeof syncContinuationDeps;