Files
memberApp/src/env.d.ts
Adrian Zürcher a908db4f38 first commit
2025-10-12 14:56:18 +02:00

8 lines
187 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}