UNPKG

@btc-vision/bsi-common

Version:

Common library for OP_NET.

19 lines (18 loc) 527 B
export interface MongoCredentialsDTO { readonly username: string; readonly password: string; readonly host: string; readonly port: string; readonly prefix?: string; readonly databaseName: string; } export declare class MongoCredentials { readonly databaseName: string; protected username: string; protected password: string; protected host: string; protected port: string; protected prefix: string; constructor(creds: MongoCredentialsDTO); get connectionUri(): string; }