mirror of
https://github.com/heyman/heynote.git
synced 2024-11-22 07:54:11 +01:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
|
/// <reference types="vite-plugin-electron/electron-env" />
|
||
|
|
||
|
declare namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
VSCODE_DEBUG?: 'true'
|
||
|
DIST_ELECTRON: string
|
||
|
DIST: string
|
||
|
/** /dist/ or /public/ */
|
||
|
PUBLIC: string
|
||
|
}
|
||
|
}
|