electron-types 37.10.2 → 37.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/electron.d.ts +5 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
package/dist/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron 37.10.
|
|
1
|
+
// Type definitions for Electron 37.10.3
|
|
2
2
|
// Project: http://electronjs.org/
|
|
3
3
|
// Definitions by: The Electron Team <https://github.com/electron/electron>
|
|
4
4
|
// Definitions: https://github.com/electron/typescript-definitions
|
|
@@ -24505,6 +24505,8 @@ declare namespace Electron {
|
|
|
24505
24505
|
type IncomingMessage = Electron.IncomingMessage;
|
|
24506
24506
|
const net: Net;
|
|
24507
24507
|
type Net = Electron.Net;
|
|
24508
|
+
const parentPort: ParentPort;
|
|
24509
|
+
type ParentPort = Electron.ParentPort;
|
|
24508
24510
|
const systemPreferences: SystemPreferences;
|
|
24509
24511
|
type SystemPreferences = Electron.SystemPreferences;
|
|
24510
24512
|
type AboutPanelOptionsOptions = Electron.AboutPanelOptionsOptions;
|
|
@@ -24854,6 +24856,8 @@ declare namespace Electron {
|
|
|
24854
24856
|
const netLog: NetLog;
|
|
24855
24857
|
type NetLog = Electron.NetLog;
|
|
24856
24858
|
class Notification extends Electron.Notification {}
|
|
24859
|
+
const parentPort: ParentPort;
|
|
24860
|
+
type ParentPort = Electron.ParentPort;
|
|
24857
24861
|
const powerMonitor: PowerMonitor;
|
|
24858
24862
|
type PowerMonitor = Electron.PowerMonitor;
|
|
24859
24863
|
const powerSaveBlocker: PowerSaveBlocker;
|
package/dist/version.json
CHANGED