import type { WithAttachments } from '../couchdb.d.ts'; import type { RxCollection } from '../rx-collection.d.ts'; import type { MaybePromise } from '../util.d.ts'; export type MigrationStrategy = ( oldDocumentData: WithAttachments, collection: RxCollection ) => MaybePromise | null>; export type MigrationStrategies = { [toVersion: number]: MigrationStrategy; };