Files

8 lines
187 B
TypeScript
Raw Permalink Normal View History

2026-02-09 17:38:25 +03:00
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}