| 16 | |
| 17 | declare namespace NodeJS { |
| 18 | interface ProcessEnv { |
| 19 | VSCODE_DEBUG?: 'true'; |
| 20 | /** |
| 21 | * The built directory structure |
| 22 | * |
| 23 | * ```tree |
| 24 | * ├─┬ dist-electron |
| 25 | * │ ├─┬ main |
| 26 | * │ │ └── index.js > Electron-Main |
| 27 | * │ └─┬ preload |
| 28 | * │ └── index.mjs > Preload-Scripts |
| 29 | * ├─┬ dist |
| 30 | * │ └── index.html > Electron-Renderer |
| 31 | * ``` |
| 32 | */ |
| 33 | APP_ROOT: string; |
| 34 | /** /dist/ or /public/ */ |
| 35 | VITE_PUBLIC: string; |
| 36 | } |
| 37 | } |
nothing calls this directly
no outgoing calls
no test coverage detected