2022-12-20 09:51:27 +08:00
|
|
|
/// <reference types="vite-plugin-electron/electron-env" />
|
2022-09-14 08:22:17 +08:00
|
|
|
|
|
|
|
declare namespace NodeJS {
|
|
|
|
interface ProcessEnv {
|
2022-10-03 09:16:14 +08:00
|
|
|
VSCODE_DEBUG?: 'true'
|
2024-04-18 17:35:48 +08:00
|
|
|
/**
|
|
|
|
* The built directory structure
|
|
|
|
*
|
|
|
|
* ```tree
|
|
|
|
* ├─┬ dist-electron
|
|
|
|
* │ ├─┬ main
|
|
|
|
* │ │ └── index.js > Electron-Main
|
|
|
|
* │ └─┬ preload
|
|
|
|
* │ └── index.mjs > Preload-Scripts
|
|
|
|
* ├─┬ dist
|
|
|
|
* │ └── index.html > Electron-Renderer
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
APP_ROOT: string
|
2022-09-14 08:22:17 +08:00
|
|
|
/** /dist/ or /public/ */
|
2023-08-04 11:27:49 +08:00
|
|
|
VITE_PUBLIC: string
|
2022-09-14 08:22:17 +08:00
|
|
|
}
|
|
|
|
}
|