rtsa-client/src/env.d.ts

10 lines
209 B
TypeScript
Raw Normal View History

2024-09-12 10:30:51 +08:00
/* eslint-disable */
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}