UNPKG

thaw-argon-promisified-mongodb

Version:

A promisified TypeScript interface to MongoDB intended for Node.js lts/argon (version 4.9.1) and WINDOWS XP ONLY.

7 lines (6 loc) 336 B
import { IPromisifiedCollection } from './collection'; export interface IPromisifiedConnection { destroy(): void; getCollection(databaseName: string, collectionName: string): IPromisifiedCollection; } export declare function createConnection(server: string, port: number, databaseName: string): Promise<IPromisifiedConnection>;