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