Files
legica-bot/process-env.d.ts
2023-10-05 19:06:01 +02:00

14 lines
184 B
TypeScript

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