Files
eamco_driver_frontend/src/env.d.ts
2024-02-29 14:27:11 -05:00

10 lines
209 B
TypeScript

/* eslint-disable */
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}