env.d.ts 187 B

1234567
  1. declare namespace NodeJS {
  2. interface ProcessEnv {
  3. NODE_ENV: string;
  4. VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
  5. VUE_ROUTER_BASE: string | undefined;
  6. }
  7. }