UNPKG

@pulsecron/pulse

Version:

The modern MongoDB-powered job scheduler library for Node.js

4 lines (3 loc) 229 B
import { AnyError, Collection } from 'mongodb'; export type DbInitMethod = (collection?: string, cb?: (error: AnyError | undefined, collection: Collection<any> | null) => void) => void; export declare const dbInit: DbInitMethod;