Files
illegitimate-bot/src/enviroment.d.ts
2025-08-10 23:35:20 +02:00

20 lines
343 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: "dev" | "prod"
TYPESCRIPT?: "true"
BUILD?: "true"
DOCKER?: "1"
}
}
}
declare global {
interface String {
removeIndents(): string
capitalizeFirstLetter(): string
}
}
export {}