fantasia-archive/src/env.d.ts

10 lines
209 B
TypeScript
Raw Normal View History

/* eslint-disable */
2021-07-10 04:38:42 +12:00
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}