fantasia-archive/src/env.d.ts
2021-07-09 18:38:42 +02:00

8 lines
187 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}