mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-19 11:56:36 +08:00
25 lines
558 B
TypeScript
25 lines
558 B
TypeScript
|
/// <reference types="vite-plugin-electron/electron-env" />
|
||
|
|
||
|
declare namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
/**
|
||
|
* The built directory structure
|
||
|
*
|
||
|
* ```tree
|
||
|
* ├─┬ dist
|
||
|
* │ ├─┬ electron
|
||
|
* │ │ ├─┬ main
|
||
|
* │ │ │ └── index.js
|
||
|
* │ │ └─┬ preload
|
||
|
* │ │ └── index.js
|
||
|
* │ ├── index.html
|
||
|
* │ ├── ...other-static-files-from-public
|
||
|
* │
|
||
|
* ```
|
||
|
*/
|
||
|
DIST: string
|
||
|
/** /dist/ or /public/ */
|
||
|
PUBLIC: string
|
||
|
}
|
||
|
}
|