electron-types 42.0.0-alpha.5 → 42.0.0-alpha.6
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 -4
- package/dist/version.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,11 +11,11 @@ The official `electron` package is ~200MB because it includes the Electron binar
|
|
|
11
11
|
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)):
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install -D electron-types@42.0.0-alpha.
|
|
14
|
+
npm install -D electron-types@42.0.0-alpha.6
|
|
15
15
|
# or
|
|
16
|
-
yarn add -D electron-types@42.0.0-alpha.
|
|
16
|
+
yarn add -D electron-types@42.0.0-alpha.6
|
|
17
17
|
# or
|
|
18
|
-
pnpm add -D electron-types@42.0.0-alpha.
|
|
18
|
+
pnpm add -D electron-types@42.0.0-alpha.6
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Usage
|
package/dist/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron 42.0.0-alpha.
|
|
1
|
+
// Type definitions for Electron 42.0.0-alpha.6
|
|
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
|
|
@@ -21948,7 +21948,7 @@ declare namespace Electron {
|
|
|
21948
21948
|
/**
|
|
21949
21949
|
* Whether or not to add an inline reply option to the notification.
|
|
21950
21950
|
*
|
|
21951
|
-
* @platform darwin
|
|
21951
|
+
* @platform darwin,win32
|
|
21952
21952
|
*/
|
|
21953
21953
|
hasReply?: boolean;
|
|
21954
21954
|
/**
|
|
@@ -21960,7 +21960,7 @@ declare namespace Electron {
|
|
|
21960
21960
|
/**
|
|
21961
21961
|
* The placeholder to write in the inline reply input field.
|
|
21962
21962
|
*
|
|
21963
|
-
* @platform darwin
|
|
21963
|
+
* @platform darwin,win32
|
|
21964
21964
|
*/
|
|
21965
21965
|
replyPlaceholder?: string;
|
|
21966
21966
|
/**
|
|
@@ -21979,7 +21979,7 @@ declare namespace Electron {
|
|
|
21979
21979
|
* Actions to add to the notification. Please read the available actions and
|
|
21980
21980
|
* limitations in the `NotificationAction` documentation.
|
|
21981
21981
|
*
|
|
21982
|
-
* @platform darwin
|
|
21982
|
+
* @platform darwin,win32
|
|
21983
21983
|
*/
|
|
21984
21984
|
actions?: NotificationAction[];
|
|
21985
21985
|
/**
|
package/dist/version.json
CHANGED