| 2 | |
| 3 | declare namespace NodeJS { |
| 4 | interface ProcessEnv { |
| 5 | /** |
| 6 | * The built directory structure |
| 7 | * |
| 8 | * ```tree |
| 9 | * ├─┬─┬ dist |
| 10 | * │ │ └── index.html |
| 11 | * │ │ |
| 12 | * │ ├─┬ dist-electron |
| 13 | * │ │ ├── main.js |
| 14 | * │ │ └── preload.js |
| 15 | * │ |
| 16 | * ``` |
| 17 | */ |
| 18 | APP_ROOT: string; |
| 19 | /** /dist/ or /public/ */ |
| 20 | VITE_PUBLIC: string; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | // Used in Renderer process, expose in `preload.ts` |
nothing calls this directly
no outgoing calls
no test coverage detected