fantasia-archive/src/env.d.ts

8 lines
187 B
TypeScript
Raw Normal View History

2021-01-31 02:43:13 +13:00
declare namespace NodeJS {
2021-05-19 11:06:50 +12:00
interface ProcessEnv {
2021-01-31 02:43:13 +13:00
NODE_ENV: string;
2021-05-19 11:06:50 +12:00
VUE_ROUTER_MODE: "hash" | "history" | "abstract" | undefined;
2021-01-31 02:43:13 +13:00
VUE_ROUTER_BASE: string | undefined;
}
}