MCPcopy
hub / github.com/eigent-ai/eigent / ProcessEnv

Interface ProcessEnv

electron/electron-env.d.ts:18–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16
17declare 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected