10 lines
255 B
TypeScript
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
|