Files
fastgpt/env.d.ts
2025-08-26 21:55:12 +08:00

11 lines
144 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
DEFAULT_ROOT_PSW: string;
PRO_URL: string;
}
}
}
export {};