electron-types 42.9.1 → 42.9.2
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 +8 -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.9.
|
|
17
|
+
npm install -D electron-types@42.9.2
|
|
18
18
|
# or
|
|
19
|
-
yarn add -D electron-types@42.9.
|
|
19
|
+
yarn add -D electron-types@42.9.2
|
|
20
20
|
# or
|
|
21
|
-
pnpm add -D electron-types@42.9.
|
|
21
|
+
pnpm add -D electron-types@42.9.2
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Usage
|
package/dist/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron 42.9.
|
|
1
|
+
// Type definitions for Electron 42.9.2
|
|
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
|
|
@@ -20302,6 +20302,13 @@ declare namespace Electron {
|
|
|
20302
20302
|
* another value by including an `=`, followed by the value. Special values `yes`
|
|
20303
20303
|
* and `1` are interpreted as `true`, while `no` and `0` are interpreted as
|
|
20304
20304
|
* `false`.
|
|
20305
|
+
*
|
|
20306
|
+
* Security-critical preferences cannot be used to make the guest less secure than
|
|
20307
|
+
* its embedder. When the embedder has any of `contextIsolation`, `javascript`,
|
|
20308
|
+
* `nodeIntegration`, `nodeIntegrationInWorker`, `sandbox`,
|
|
20309
|
+
* `nodeIntegrationInSubFrames` or `enableWebSQL` set to its more secure value, the
|
|
20310
|
+
* guest inherits that value and the corresponding `webpreferences` entry is
|
|
20311
|
+
* ignored.
|
|
20305
20312
|
*/
|
|
20306
20313
|
webpreferences: string;
|
|
20307
20314
|
}
|
package/dist/version.json
CHANGED