FreeDATA/gui/electron/electron-env.d.ts

12 lines
242 B
TypeScript
Raw Normal View History

2023-09-02 11:37:03 +00:00
/// <reference types="vite-plugin-electron/electron-env" />
declare namespace NodeJS {
interface ProcessEnv {
2023-10-04 17:54:50 +00:00
VSCODE_DEBUG?: 'true'
DIST_ELECTRON: string
2023-09-02 11:37:03 +00:00
DIST: string
/** /dist/ or /public/ */
2023-10-04 17:54:50 +00:00
VITE_PUBLIC: string
2023-09-02 11:37:03 +00:00
}
}