import { ConnectOptions } from 'mongoose'; /** * This will hold and set the basic settings of an application */ export declare class DyNTS_App_Params { /** * name of the application */ readonly name: string; /** * title will be shown on the start of the application */ readonly title?: string; /** * version of the application * you should set the version, * probably, you should set from the package.json as follows: * import { version } from '../package.json'; */ readonly version: string; /** * name of your MongoDB table * by default, its: `mongodb://localhost:27017/${this.dbName}` */ readonly dbUri?: string; /** * name of your MongoDB table */ readonly dbName?: string; /** * options for the MongoDB connection */ readonly dbOptions?: ConnectOptions; readonly openHost?: string; readonly secureHost?: string; /** * specify the maximum * length of the queue of pending connections. * The actual length will be determined by the OS through sysctl. * */ readonly expressBacklog?: number; /** * name of the system, by default, its: this.name.replace(' ', '-') */ readonly systemName?: string; /** * short code name of the system */ readonly systemShortCodeName?: string; constructor(set: DyNTS_App_Params); } //# sourceMappingURL=app-params.control-model.d.ts.map