kindagoose
Version:
Integrate Typegoose with NestJS!
10 lines • 392 B
TypeScript
import { ConnectOptions } from 'mongoose';
/***
* @property {string} connectionName - Name for mongoose connection. If undefined, the default connection name will be used.
*/
export interface KindagooseModuleOptions extends ConnectOptions {
connectionName?: string;
retryAttempts?: number;
retryDelay?: number;
}
//# sourceMappingURL=kindagoose-module-options.interface.d.ts.map