Files
illegitimate-bot/src/enviroment.d.ts
Taken 7a2a136f30 Changed small functions to methods
Added custom color function
2024-09-07 20:09:29 +02:00

18 lines
291 B
TypeScript

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