mirror of
https://github.com/heyman/heynote.git
synced 2024-11-08 00:54:31 +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
|
|
}
|
|
}
|