electron-types 42.9.3 → 42.10.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/README.md +3 -3
- package/dist/electron.d.ts +6 -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.10.1
|
|
18
18
|
# or
|
|
19
|
-
yarn add -D electron-types@42.
|
|
19
|
+
yarn add -D electron-types@42.10.1
|
|
20
20
|
# or
|
|
21
|
-
pnpm add -D electron-types@42.
|
|
21
|
+
pnpm add -D electron-types@42.10.1
|
|
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.10.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/typescript-definitions
|
|
@@ -1561,6 +1561,11 @@ declare namespace Electron {
|
|
|
1561
1561
|
* line, the system's single instance mechanism will be bypassed, and you have to
|
|
1562
1562
|
* use this method to ensure single instance.
|
|
1563
1563
|
*
|
|
1564
|
+
* > [!NOTE] On macOS and Linux, the second instance's command line arguments and
|
|
1565
|
+
* `additionalData` are sent to the primary instance in a single message that is
|
|
1566
|
+
* limited to 32 MB. Larger messages are dropped: this method still returns
|
|
1567
|
+
* `false`, but the primary instance does not emit `second-instance`.
|
|
1568
|
+
*
|
|
1564
1569
|
* An example of activating the window of primary instance when a second instance
|
|
1565
1570
|
* starts:
|
|
1566
1571
|
*/
|
package/dist/version.json
CHANGED