electron 14.2.0 → 14.2.1
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/electron.d.ts +3 -3
- package/package.json +1 -1
package/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron 14.2.
|
|
1
|
+
// Type definitions for Electron 14.2.1
|
|
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/electron-typescript-definitions
|
|
@@ -2163,9 +2163,9 @@ declare namespace Electron {
|
|
|
2163
2163
|
*/
|
|
2164
2164
|
getOpacity(): number;
|
|
2165
2165
|
/**
|
|
2166
|
-
* The parent window.
|
|
2166
|
+
* The parent window or `null` if there is no parent.
|
|
2167
2167
|
*/
|
|
2168
|
-
getParentWindow(): BrowserWindow;
|
|
2168
|
+
getParentWindow(): (BrowserWindow) | (null);
|
|
2169
2169
|
/**
|
|
2170
2170
|
* Contains the window's current position.
|
|
2171
2171
|
*/
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"node": ">= 8.6"
|
|
17
17
|
},
|
|
18
18
|
"name": "electron",
|
|
19
|
-
"version": "14.2.
|
|
19
|
+
"version": "14.2.1",
|
|
20
20
|
"repository": "https://github.com/electron/electron",
|
|
21
21
|
"description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
|
|
22
22
|
"license": "MIT",
|