electron-types 42.10.1 → 42.11.0
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/README.md +3 -3
- package/dist/electron.d.ts +3 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,11 +14,11 @@ The official `electron` package is ~200MB because it includes the Electron binar
|
|
|
14
14
|
Since this package only provides TypeScript types, install it as a dev dependency. **Install the version that matches your Electron version** (see [Version Matching](#version-matching)):
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npm install -D electron-types@42.
|
|
17
|
+
npm install -D electron-types@42.11.0
|
|
18
18
|
# or
|
|
19
|
-
yarn add -D electron-types@42.
|
|
19
|
+
yarn add -D electron-types@42.11.0
|
|
20
20
|
# or
|
|
21
|
-
pnpm add -D electron-types@42.
|
|
21
|
+
pnpm add -D electron-types@42.11.0
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Usage
|
package/dist/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron 42.
|
|
1
|
+
// Type definitions for Electron 42.11.0
|
|
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
|
|
@@ -9629,6 +9629,8 @@ declare namespace Electron {
|
|
|
9629
9629
|
* or just displayed.
|
|
9630
9630
|
*
|
|
9631
9631
|
* This property can be dynamically changed.
|
|
9632
|
+
*
|
|
9633
|
+
* @platform linux,win32
|
|
9632
9634
|
*/
|
|
9633
9635
|
registerAccelerator: boolean;
|
|
9634
9636
|
/**
|
package/dist/version.json
CHANGED