6 lines
87 B
TypeScript
6 lines
87 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
readonly DB_URL: string;
|
|
}
|
|
}
|