Files
legica-bot/process-env.d.ts
2023-10-14 01:04:04 +02:00

15 lines
215 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
TOKEN: string;
PORT: string;
CRON_LEGICA: string;
PASSWORD: string;
TIMEZONE: string;
LEGICA_DATE_FORMAT: string;
}
}
}
export {};