mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
/// <reference types="vite-electron-plugin/electron-env" />
|
|
|
|
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
DIST: string;
|
|
DIST_ELECTRON: string;
|
|
/** /dist/ or /public/ */
|
|
PUBLIC: string;
|
|
VSCODE_DEBUG?: 'true';
|
|
}
|
|
}
|