UNPKG

iridium

Version:

A custom lightweight ORM for MongoDB designed for power-users

15 lines (14 loc) 315 B
import * as MongoDB from "mongodb"; export interface Configuration { host?: string; port?: number; hosts?: { address: string; port?: number; }[]; database?: string; username?: string; password?: string; options?: MongoDB.MongoClientOptions; [key: string]: any; }