fantasia-archive/src/env.d.ts
Elvanos a3f637d55a First commit of the 2023 version of FA
Modified readme file for proper install
Electron dev env works
Build untested so far
2023-08-19 10:43:21 +02: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;
}
}