electron-types 44.0.0-alpha.2 → 44.0.0-alpha.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/README.md +3 -3
- package/dist/electron.d.ts +2 -2
- 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@44.0.0-alpha.
|
|
17
|
+
npm install -D electron-types@44.0.0-alpha.3
|
|
18
18
|
# or
|
|
19
|
-
yarn add -D electron-types@44.0.0-alpha.
|
|
19
|
+
yarn add -D electron-types@44.0.0-alpha.3
|
|
20
20
|
# or
|
|
21
|
-
pnpm add -D electron-types@44.0.0-alpha.
|
|
21
|
+
pnpm add -D electron-types@44.0.0-alpha.3
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Usage
|
package/dist/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron 44.0.0-alpha.
|
|
1
|
+
// Type definitions for Electron 44.0.0-alpha.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
|
|
@@ -1865,7 +1865,7 @@ declare namespace Electron {
|
|
|
1865
1865
|
* resources will be leaked and your app will lose its ability to reach outside the
|
|
1866
1866
|
* sandbox completely, until your app is restarted.
|
|
1867
1867
|
*
|
|
1868
|
-
* Start accessing a security scoped resource. With this method Electron
|
|
1868
|
+
* Start accessing a security scoped resource. With this method, Electron
|
|
1869
1869
|
* applications that are packaged for the Mac App Store may reach outside their
|
|
1870
1870
|
* sandbox to access files chosen by the user. See Apple's documentation for a
|
|
1871
1871
|
* description of how this system works.
|
package/dist/version.json
CHANGED