17 lines
311 B
TypeScript
17 lines
311 B
TypeScript
|
|
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'development' | 'test' | 'production'
|
|
readonly VITE_DEV_SERVER_URL: string
|
|
}
|
|
|
|
interface Process {
|
|
electronApp: import('node:child_process').ChildProcess
|
|
}
|
|
}
|
|
|
|
interface ImportMeta {
|
|
/** shims Vite */
|
|
env: Record<string, any>
|
|
}
|