Files
firefly-iii/frontend/src/env.d.ts

8 lines
187 B
TypeScript
Raw Normal View History

2022-02-27 10:12:54 +01:00
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}