electron-types 40.10.1 → 40.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/README.md +3 -3
- package/dist/electron.d.ts +4 -2
- package/dist/version.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,11 +15,11 @@ The official `electron` package is ~200MB because it includes the Electron binar
|
|
|
15
15
|
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)):
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npm install -D electron-types@40.10.
|
|
18
|
+
npm install -D electron-types@40.10.3
|
|
19
19
|
# or
|
|
20
|
-
yarn add -D electron-types@40.10.
|
|
20
|
+
yarn add -D electron-types@40.10.3
|
|
21
21
|
# or
|
|
22
|
-
pnpm add -D electron-types@40.10.
|
|
22
|
+
pnpm add -D electron-types@40.10.3
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Usage
|
package/dist/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron 40.10.
|
|
1
|
+
// Type definitions for Electron 40.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
|
|
@@ -13169,7 +13169,9 @@ declare namespace Electron {
|
|
|
13169
13169
|
nativePixmap?: NativePixmap;
|
|
13170
13170
|
/**
|
|
13171
13171
|
* NT HANDLE holds the shared texture. Note that this NT HANDLE is local to current
|
|
13172
|
-
* process.
|
|
13172
|
+
* process. Output textures of `rgba`, `bgra`, `rgbaf16` formats don't have a keyed
|
|
13173
|
+
* mutex on the texture handle, but `nv12` format texture handles do have a keyed
|
|
13174
|
+
* mutex.
|
|
13173
13175
|
*
|
|
13174
13176
|
* @platform win32
|
|
13175
13177
|
*/
|
package/dist/version.json
CHANGED