env.d.ts 209 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9
/* eslint-disable */

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