123456789101112131415161718192021222324252627 |
- declare namespace NodeJS {
- interface Process {
- env: {
- ENV: 'development' | 'production';
-
- BASE_URL: string;
-
- VUE_APP_BASE_API: string;
-
- VUE_APP_BASE_SOCKET_PATH: string;
-
- VUE_APP_BASE_SOCKET_NSP: string;
-
- VUE_APP_MOCK_API: string;
- GITHUB_AUTH_TOKEN: string;
- NODE_ENV: 'development' | 'production';
- PORT?: string;
- PWD: string;
- };
- }
- }
|