MCPcopy
hub / github.com/webadderallorg/Recordly / ProcessEnv

Interface ProcessEnv

electron/electron-env.d.ts:4–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2
3declare 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`

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected