mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-18 03:58:44 +08:00
https://github.com/electron/electron/issues/5113 https://github.com/electron/electron/issues/4362 https://github.com/PaulLeCam/react-native-electron/issues/6
16 lines
271 B
TypeScript
16 lines
271 B
TypeScript
/// <reference path="../../node_modules/electron/electron.d.ts" />
|
|
|
|
interface Window {
|
|
ipc: Electron.IpcRenderer
|
|
process?: {
|
|
type?: string
|
|
}
|
|
require: NodeRequireFunction
|
|
}
|
|
|
|
declare namespace NodeJS {
|
|
interface ProcessVersions {
|
|
electron?: boolean
|
|
}
|
|
}
|