mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
23 lines
465 B
TypeScript
23 lines
465 B
TypeScript
|
/// <reference types="vite-plugin-electron/electron-env" />
|
||
|
|
||
|
declare namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
/**
|
||
|
* The built directory structure
|
||
|
*
|
||
|
* ```tree
|
||
|
* ├─┬─┬ dist
|
||
|
* │ │ └── index.html
|
||
|
* │ │
|
||
|
* │ ├─┬ dist-electron
|
||
|
* │ │ ├── main.js
|
||
|
* │ │ └── preload.js
|
||
|
* │
|
||
|
* ```
|
||
|
*/
|
||
|
DIST: string
|
||
|
/** /dist/ or /public/ */
|
||
|
PUBLIC: string
|
||
|
}
|
||
|
}
|