jws-frontend/src/env.d.ts
2024-04-02 11:02:16 +07:00

9 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;
}
}