UNPKG

mongo2mongo

Version:

Sync one MongoDB collection to another MongoDB collection

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