feishin/electron/electron-env.d.ts
2022-10-06 21:17:40 -07:00

12 lines
241 B
TypeScript

/// <reference types="vite-electron-plugin/electron-env" />
declare namespace NodeJS {
interface ProcessEnv {
DIST: string;
DIST_ELECTRON: string;
/** /dist/ or /public/ */
PUBLIC: string;
VSCODE_DEBUG?: 'true';
}
}