41 lines
949 B
TypeScript
41 lines
949 B
TypeScript
declare const _default: () => {
|
|
app: {
|
|
port: number;
|
|
nodeEnv: string;
|
|
};
|
|
database: {
|
|
url: string | undefined;
|
|
ssl: boolean;
|
|
};
|
|
redis: {
|
|
url: string | undefined;
|
|
};
|
|
jwt: {
|
|
secret: string | undefined;
|
|
accessTtl: string;
|
|
refreshTtl: string;
|
|
};
|
|
sms: {
|
|
apiKey: string | undefined;
|
|
wsdlUrl: string | undefined;
|
|
username: string | undefined;
|
|
password: string | undefined;
|
|
fromNumber: string | undefined;
|
|
};
|
|
otp: {
|
|
ttlSeconds: number;
|
|
};
|
|
minio: {
|
|
endpoint: string | undefined;
|
|
port: number;
|
|
useSsl: boolean;
|
|
accessKey: string | undefined;
|
|
secretKey: string | undefined;
|
|
bucket: string | undefined;
|
|
publicBucket: string | undefined;
|
|
privateBucket: string;
|
|
publicUrl: string | undefined;
|
|
};
|
|
};
|
|
export default _default;
|