Files
neuro-reply-website/backend/dist/config/index.d.ts
2023-11-18 20:41:14 +03:00

17 lines
335 B
TypeScript

export declare const config: {
database: {
type: string;
host: string;
port: number;
username: string;
password: string;
database: string;
synchronize: boolean;
logging: boolean;
autoLoadEntities: boolean;
};
server: {
port: number;
};
};