20 lines
547 B
TypeScript
20 lines
547 B
TypeScript
export declare const config: {
|
|
readonly port: string | 3001;
|
|
readonly nodeEnv: string;
|
|
readonly database: {
|
|
readonly url: string;
|
|
};
|
|
readonly jwt: {
|
|
readonly secret: string;
|
|
readonly expiresIn: "24h";
|
|
};
|
|
readonly upload: {
|
|
readonly path: string;
|
|
readonly maxFileSize: number;
|
|
readonly allowedTypes: readonly ["image/jpeg", "image/jpg", "image/png", "image/webp"];
|
|
};
|
|
readonly cors: {
|
|
readonly origin: string;
|
|
};
|
|
};
|
|
//# sourceMappingURL=config.d.ts.map
|