oh-my-opencode/src/tools/delegate-task/sync-continuation-deps.ts

10 lines
255 B
TypeScript

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