mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-04 19:50:55 +00:00
8 lines
187 B
TypeScript
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;
|
||
|
}
|
||
|
}
|