UNPKG

edge-sync-client

Version:

Library for accessing the Edge data-sync system

10 lines (9 loc) 511 B
import type { SyncClientOptions } from './client/sync-client'; /** @deprecated Just use `SyncClientOptions` */ export declare type CommonOptions = Pick<SyncClientOptions, 'fetch' | 'log'>; export * from './types/base-types'; export * from './types/rest-types'; export { asMaybeConflictError, ConflictError } from './types/error'; export type { SyncClient, SyncClientOptions } from './client/sync-client'; export { makeSyncClient } from './client/sync-client'; export { syncKeyToRepoId } from './util/security';