mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-13 00:28:42 +08:00
18 lines
304 B
TypeScript
18 lines
304 B
TypeScript
/// <reference path="../../node_modules/electron/electron.d.ts" />
|
|
|
|
interface Window {
|
|
devhub?: boolean
|
|
eval: never
|
|
ipc: Electron.IpcRenderer
|
|
process?: {
|
|
type?: string
|
|
}
|
|
require: NodeRequireFunction
|
|
}
|
|
|
|
declare namespace NodeJS {
|
|
interface ProcessVersions {
|
|
electron?: boolean
|
|
}
|
|
}
|