UNPKG

mongo2mongo

Version:

Sync one MongoDB collection to another MongoDB collection

6 lines (5 loc) 148 B
import type { Document } from 'mongodb'; export interface SyncOptions { mapper?: (doc: Document) => Document; } export type Events = 'process';