electron-env.d.ts 237 B

1234567891011
  1. /// <reference types="vite-plugin-electron/electron-env" />
  2. declare namespace NodeJS {
  3. interface ProcessEnv {
  4. VSCODE_DEBUG?: 'true'
  5. DIST_ELECTRON: string
  6. DIST: string
  7. /** /dist/ or /public/ */
  8. PUBLIC: string
  9. }
  10. }