11 lines
144 B
TypeScript
11 lines
144 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
DEFAULT_ROOT_PSW: string;
|
|
PRO_URL: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|