electron-types 41.0.2 → 42.0.0-alpha.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 +148 -16
- 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@
|
|
14
|
+
npm install -D electron-types@42.0.0-alpha.1
|
|
15
15
|
# or
|
|
16
|
-
yarn add -D electron-types@
|
|
16
|
+
yarn add -D electron-types@42.0.0-alpha.1
|
|
17
17
|
# or
|
|
18
|
-
pnpm add -D electron-types@
|
|
18
|
+
pnpm add -D electron-types@42.0.0-alpha.1
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Usage
|
package/dist/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron
|
|
1
|
+
// Type definitions for Electron 42.0.0-alpha.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
|
|
@@ -18,6 +18,33 @@ declare namespace Electron {
|
|
|
18
18
|
readonly defaultPrevented: boolean;
|
|
19
19
|
} & Params;
|
|
20
20
|
|
|
21
|
+
interface ActivationArguments {
|
|
22
|
+
|
|
23
|
+
// Docs: https://electronjs.org/docs/api/structures/activation-arguments
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* For `'action'` type, the index of the button that was clicked.
|
|
27
|
+
*/
|
|
28
|
+
actionIndex?: number;
|
|
29
|
+
/**
|
|
30
|
+
* The raw activation arguments string from Windows.
|
|
31
|
+
*/
|
|
32
|
+
arguments: string;
|
|
33
|
+
/**
|
|
34
|
+
* For `'reply'` type, the text the user entered in the reply field.
|
|
35
|
+
*/
|
|
36
|
+
reply?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The type of activation that launched the app: `'click'`, `'action'`, or
|
|
39
|
+
* `'reply'`.
|
|
40
|
+
*/
|
|
41
|
+
type: string;
|
|
42
|
+
/**
|
|
43
|
+
* A dictionary of all user inputs from the notification.
|
|
44
|
+
*/
|
|
45
|
+
userInputs?: Record<string, string>;
|
|
46
|
+
}
|
|
47
|
+
|
|
21
48
|
interface App extends NodeJS.EventEmitter {
|
|
22
49
|
|
|
23
50
|
// Docs: https://electronjs.org/docs/api/app
|
|
@@ -1360,6 +1387,12 @@ declare namespace Electron {
|
|
|
1360
1387
|
* @platform darwin,win32
|
|
1361
1388
|
*/
|
|
1362
1389
|
isAccessibilitySupportEnabled(): boolean;
|
|
1390
|
+
/**
|
|
1391
|
+
* `true` if the application is active (i.e. focused).
|
|
1392
|
+
*
|
|
1393
|
+
* @platform darwin
|
|
1394
|
+
*/
|
|
1395
|
+
isActive(): boolean;
|
|
1363
1396
|
/**
|
|
1364
1397
|
* Whether the current executable is the default handler for a protocol (aka URI
|
|
1365
1398
|
* scheme).
|
|
@@ -7207,12 +7240,12 @@ declare namespace Electron {
|
|
|
7207
7240
|
*/
|
|
7208
7241
|
removed: boolean) => void): this;
|
|
7209
7242
|
/**
|
|
7210
|
-
* A promise which resolves when the cookie store has been flushed
|
|
7243
|
+
* A promise which resolves when the cookie store has been flushed.
|
|
7211
7244
|
*
|
|
7212
|
-
* Writes any unwritten cookies data to disk
|
|
7245
|
+
* Writes any unwritten cookies data to disk.
|
|
7213
7246
|
*
|
|
7214
7247
|
* Cookies written by any method will not be written to disk immediately, but will
|
|
7215
|
-
* be written every 30 seconds or 512 operations
|
|
7248
|
+
* be written every 30 seconds or 512 operations.
|
|
7216
7249
|
*
|
|
7217
7250
|
* Calling this method can cause the cookie to be written to disk immediately.
|
|
7218
7251
|
*/
|
|
@@ -7225,13 +7258,13 @@ declare namespace Electron {
|
|
|
7225
7258
|
*/
|
|
7226
7259
|
get(filter: CookiesGetFilter): Promise<Electron.Cookie[]>;
|
|
7227
7260
|
/**
|
|
7228
|
-
* A promise which resolves when the cookie has been removed
|
|
7261
|
+
* A promise which resolves when the cookie has been removed.
|
|
7229
7262
|
*
|
|
7230
|
-
* Removes the cookies matching `url` and `name
|
|
7263
|
+
* Removes the cookies matching `url` and `name`.
|
|
7231
7264
|
*/
|
|
7232
7265
|
remove(url: string, name: string): Promise<void>;
|
|
7233
7266
|
/**
|
|
7234
|
-
* A promise which resolves when the cookie has been set
|
|
7267
|
+
* A promise which resolves when the cookie has been set.
|
|
7235
7268
|
*
|
|
7236
7269
|
* Sets a cookie with `details`.
|
|
7237
7270
|
*/
|
|
@@ -10286,6 +10319,34 @@ declare namespace Electron {
|
|
|
10286
10319
|
* Notification
|
|
10287
10320
|
*/
|
|
10288
10321
|
constructor(options?: NotificationConstructorOptions);
|
|
10322
|
+
/**
|
|
10323
|
+
* Registers a callback to handle all notification activations. The callback is
|
|
10324
|
+
* invoked whenever a notification is clicked, replied to, or has an action button
|
|
10325
|
+
* pressed - regardless of whether the original `Notification` object is still in
|
|
10326
|
+
* memory.
|
|
10327
|
+
*
|
|
10328
|
+
* This method handles timing automatically:
|
|
10329
|
+
*
|
|
10330
|
+
* * If an activation already occurred before calling this method, the callback is
|
|
10331
|
+
* invoked immediately with those details.
|
|
10332
|
+
* * For all subsequent activations, the callback is invoked when they occur.
|
|
10333
|
+
*
|
|
10334
|
+
* The callback remains registered until replaced by another call to
|
|
10335
|
+
* `handleActivation`.
|
|
10336
|
+
*
|
|
10337
|
+
* This provides a centralized way to handle notification interactions that works
|
|
10338
|
+
* in all scenarios:
|
|
10339
|
+
*
|
|
10340
|
+
* * Cold start (app launched from notification click)
|
|
10341
|
+
* * Notifications persisted in AC that have no in-memory representation after app
|
|
10342
|
+
* re-start
|
|
10343
|
+
* * Notification object was garbage collected
|
|
10344
|
+
* * Notification object is still in memory (callback is invoked in addition to
|
|
10345
|
+
* instance events)
|
|
10346
|
+
*
|
|
10347
|
+
* @platform win32
|
|
10348
|
+
*/
|
|
10349
|
+
static handleActivation(callback: (details: ActivationArguments) => void): void;
|
|
10289
10350
|
/**
|
|
10290
10351
|
* Whether or not desktop notifications are supported on the current system
|
|
10291
10352
|
*/
|
|
@@ -11542,16 +11603,28 @@ declare namespace Electron {
|
|
|
11542
11603
|
/**
|
|
11543
11604
|
* the decrypted string. Decrypts the encrypted buffer obtained with
|
|
11544
11605
|
* `safeStorage.encryptString` back into a string.
|
|
11545
|
-
*
|
|
11546
|
-
* This function will throw an error if decryption fails.
|
|
11547
11606
|
*/
|
|
11548
11607
|
decryptString(encrypted: Buffer): string;
|
|
11608
|
+
/**
|
|
11609
|
+
* Resolve with an object containing the following:
|
|
11610
|
+
*
|
|
11611
|
+
* * `shouldReEncrypt` boolean - whether data that has just been returned from the
|
|
11612
|
+
* decrypt operation should be re-encrypted, as the key has been rotated or a new
|
|
11613
|
+
* key is available that provides a different security level. If `true`, you should
|
|
11614
|
+
* call `decryptStringAsync` again to receive the new decrypted string.
|
|
11615
|
+
* * `result` string - the decrypted string.
|
|
11616
|
+
*/
|
|
11617
|
+
decryptStringAsync(encrypted: Buffer): Promise<Electron.DecryptStringAsyncReturnValue>;
|
|
11549
11618
|
/**
|
|
11550
11619
|
* An array of bytes representing the encrypted string.
|
|
11551
11620
|
*
|
|
11552
11621
|
* This function will throw an error if encryption fails.
|
|
11553
11622
|
*/
|
|
11554
11623
|
encryptString(plainText: string): Buffer;
|
|
11624
|
+
/**
|
|
11625
|
+
* An array of bytes representing the encrypted string.
|
|
11626
|
+
*/
|
|
11627
|
+
encryptStringAsync(plainText: string): Promise<Buffer>;
|
|
11555
11628
|
/**
|
|
11556
11629
|
* User friendly name of the password manager selected on Linux.
|
|
11557
11630
|
*
|
|
@@ -11574,6 +11647,10 @@ declare namespace Electron {
|
|
|
11574
11647
|
* @platform linux
|
|
11575
11648
|
*/
|
|
11576
11649
|
getSelectedStorageBackend(): ('basic_text' | 'gnome_libsecret' | 'kwallet' | 'kwallet5' | 'kwallet6' | 'unknown');
|
|
11650
|
+
/**
|
|
11651
|
+
* Whether encryption is available for asynchronous safeStorage operations.
|
|
11652
|
+
*/
|
|
11653
|
+
isAsyncEncryptionAvailable(): Promise<boolean>;
|
|
11577
11654
|
/**
|
|
11578
11655
|
* Whether encryption is available.
|
|
11579
11656
|
*
|
|
@@ -13288,7 +13365,7 @@ declare namespace Electron {
|
|
|
13288
13365
|
/**
|
|
13289
13366
|
* The pixel format of the texture.
|
|
13290
13367
|
*/
|
|
13291
|
-
pixelFormat: ('bgra' | 'rgba' | 'rgbaf16' | 'nv12');
|
|
13368
|
+
pixelFormat: ('bgra' | 'rgba' | 'rgbaf16' | 'nv12' | 'p010le');
|
|
13292
13369
|
/**
|
|
13293
13370
|
* A timestamp in microseconds that will be reflected to `VideoFrame`.
|
|
13294
13371
|
*/
|
|
@@ -15492,7 +15569,7 @@ declare namespace Electron {
|
|
|
15492
15569
|
* > [!NOTE] The area cutout of the view's border still captures clicks.
|
|
15493
15570
|
*/
|
|
15494
15571
|
setBorderRadius(radius: number): void;
|
|
15495
|
-
setBounds(bounds: Rectangle): void;
|
|
15572
|
+
setBounds(bounds: Rectangle, options?: BoundsOptions): void;
|
|
15496
15573
|
setVisible(visible: boolean): void;
|
|
15497
15574
|
/**
|
|
15498
15575
|
* A `View[]` property representing the child views of this view.
|
|
@@ -19941,6 +20018,14 @@ declare namespace Electron {
|
|
|
19941
20018
|
pin?: string;
|
|
19942
20019
|
}
|
|
19943
20020
|
|
|
20021
|
+
interface BoundsOptions {
|
|
20022
|
+
/**
|
|
20023
|
+
* If true, the bounds change will be animated. If an object is passed, it can
|
|
20024
|
+
* contain the following properties:
|
|
20025
|
+
*/
|
|
20026
|
+
animate?: (boolean) | (Animate);
|
|
20027
|
+
}
|
|
20028
|
+
|
|
19944
20029
|
interface BrowserViewConstructorOptions {
|
|
19945
20030
|
/**
|
|
19946
20031
|
* Settings of web page's features.
|
|
@@ -20029,11 +20114,6 @@ declare namespace Electron {
|
|
|
20029
20114
|
* not specified, clear all storage types.
|
|
20030
20115
|
*/
|
|
20031
20116
|
storages?: Array<'cookies' | 'filesystem' | 'indexdb' | 'localstorage' | 'shadercache' | 'websql' | 'serviceworkers' | 'cachestorage'>;
|
|
20032
|
-
/**
|
|
20033
|
-
* The types of quotas to clear, can be `temporary`. If not specified, clear all
|
|
20034
|
-
* quotas.
|
|
20035
|
-
*/
|
|
20036
|
-
quotas?: Array<'temporary'>;
|
|
20037
20117
|
}
|
|
20038
20118
|
|
|
20039
20119
|
interface ClientCertRequestParams {
|
|
@@ -20637,6 +20717,20 @@ declare namespace Electron {
|
|
|
20637
20717
|
bookmark?: string;
|
|
20638
20718
|
}
|
|
20639
20719
|
|
|
20720
|
+
interface DecryptStringAsyncReturnValue {
|
|
20721
|
+
/**
|
|
20722
|
+
* whether data that has just been returned from the decrypt operation should be
|
|
20723
|
+
* re-encrypted, as the key has been rotated or a new key is available that
|
|
20724
|
+
* provides a different security level. If `true`, you should call
|
|
20725
|
+
* `decryptStringAsync` again to receive the new decrypted string.
|
|
20726
|
+
*/
|
|
20727
|
+
shouldReEncrypt: boolean;
|
|
20728
|
+
/**
|
|
20729
|
+
* the decrypted string.
|
|
20730
|
+
*/
|
|
20731
|
+
result: string;
|
|
20732
|
+
}
|
|
20733
|
+
|
|
20640
20734
|
interface DefaultFontFamily {
|
|
20641
20735
|
/**
|
|
20642
20736
|
* Defaults to `Times New Roman`.
|
|
@@ -21888,6 +21982,13 @@ declare namespace Electron {
|
|
|
21888
21982
|
* @experimental
|
|
21889
21983
|
*/
|
|
21890
21984
|
sharedTexturePixelFormat?: ('argb' | 'rgbaf16');
|
|
21985
|
+
/**
|
|
21986
|
+
* The device scale factor of the offscreen rendering output. If not set, will use
|
|
21987
|
+
* `1` as default.
|
|
21988
|
+
*
|
|
21989
|
+
* @experimental
|
|
21990
|
+
*/
|
|
21991
|
+
deviceScaleFactor?: number;
|
|
21891
21992
|
}
|
|
21892
21993
|
|
|
21893
21994
|
interface OnBeforeRedirectListenerDetails {
|
|
@@ -23745,6 +23846,17 @@ declare namespace Electron {
|
|
|
23745
23846
|
edge: ('bottom' | 'left' | 'right' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right');
|
|
23746
23847
|
}
|
|
23747
23848
|
|
|
23849
|
+
interface Animate {
|
|
23850
|
+
/**
|
|
23851
|
+
* Duration of the animation in milliseconds. Default is `250`.
|
|
23852
|
+
*/
|
|
23853
|
+
duration?: number;
|
|
23854
|
+
/**
|
|
23855
|
+
* Easing function for the animation. Default is `linear`.
|
|
23856
|
+
*/
|
|
23857
|
+
easing?: ('linear' | 'ease-in' | 'ease-out' | 'ease-in-out');
|
|
23858
|
+
}
|
|
23859
|
+
|
|
23748
23860
|
interface Children {
|
|
23749
23861
|
}
|
|
23750
23862
|
|
|
@@ -24204,6 +24316,7 @@ declare namespace Electron {
|
|
|
24204
24316
|
type BitmapOptions = Electron.BitmapOptions;
|
|
24205
24317
|
type BlinkMemoryInfo = Electron.BlinkMemoryInfo;
|
|
24206
24318
|
type BluetoothPairingHandlerHandlerDetails = Electron.BluetoothPairingHandlerHandlerDetails;
|
|
24319
|
+
type BoundsOptions = Electron.BoundsOptions;
|
|
24207
24320
|
type BrowserViewConstructorOptions = Electron.BrowserViewConstructorOptions;
|
|
24208
24321
|
type CallbackResponse = Electron.CallbackResponse;
|
|
24209
24322
|
type CertificateTrustDialogOptions = Electron.CertificateTrustDialogOptions;
|
|
@@ -24230,6 +24343,7 @@ declare namespace Electron {
|
|
|
24230
24343
|
type CreateFromBufferOptions = Electron.CreateFromBufferOptions;
|
|
24231
24344
|
type CreateInterruptedDownloadOptions = Electron.CreateInterruptedDownloadOptions;
|
|
24232
24345
|
type Data = Electron.Data;
|
|
24346
|
+
type DecryptStringAsyncReturnValue = Electron.DecryptStringAsyncReturnValue;
|
|
24233
24347
|
type DefaultFontFamily = Electron.DefaultFontFamily;
|
|
24234
24348
|
type Details = Electron.Details;
|
|
24235
24349
|
type DevicePermissionHandlerHandlerDetails = Electron.DevicePermissionHandlerHandlerDetails;
|
|
@@ -24391,6 +24505,7 @@ declare namespace Electron {
|
|
|
24391
24505
|
type WillFrameNavigateEvent = Electron.WillFrameNavigateEvent;
|
|
24392
24506
|
type WillNavigateEvent = Electron.WillNavigateEvent;
|
|
24393
24507
|
type WillResizeDetails = Electron.WillResizeDetails;
|
|
24508
|
+
type Animate = Electron.Animate;
|
|
24394
24509
|
type Children = Electron.Children;
|
|
24395
24510
|
type EditFlags = Electron.EditFlags;
|
|
24396
24511
|
type Env = Electron.Env;
|
|
@@ -24412,6 +24527,7 @@ declare namespace Electron {
|
|
|
24412
24527
|
type Endpoints = Electron.Endpoints;
|
|
24413
24528
|
type BaseWindowConstructorOptions = Electron.BaseWindowConstructorOptions;
|
|
24414
24529
|
type BrowserWindowConstructorOptions = Electron.BrowserWindowConstructorOptions;
|
|
24530
|
+
type ActivationArguments = Electron.ActivationArguments;
|
|
24415
24531
|
type BluetoothDevice = Electron.BluetoothDevice;
|
|
24416
24532
|
type Certificate = Electron.Certificate;
|
|
24417
24533
|
type CertificatePrincipal = Electron.CertificatePrincipal;
|
|
@@ -24601,6 +24717,7 @@ declare namespace Electron {
|
|
|
24601
24717
|
type BitmapOptions = Electron.BitmapOptions;
|
|
24602
24718
|
type BlinkMemoryInfo = Electron.BlinkMemoryInfo;
|
|
24603
24719
|
type BluetoothPairingHandlerHandlerDetails = Electron.BluetoothPairingHandlerHandlerDetails;
|
|
24720
|
+
type BoundsOptions = Electron.BoundsOptions;
|
|
24604
24721
|
type BrowserViewConstructorOptions = Electron.BrowserViewConstructorOptions;
|
|
24605
24722
|
type CallbackResponse = Electron.CallbackResponse;
|
|
24606
24723
|
type CertificateTrustDialogOptions = Electron.CertificateTrustDialogOptions;
|
|
@@ -24627,6 +24744,7 @@ declare namespace Electron {
|
|
|
24627
24744
|
type CreateFromBufferOptions = Electron.CreateFromBufferOptions;
|
|
24628
24745
|
type CreateInterruptedDownloadOptions = Electron.CreateInterruptedDownloadOptions;
|
|
24629
24746
|
type Data = Electron.Data;
|
|
24747
|
+
type DecryptStringAsyncReturnValue = Electron.DecryptStringAsyncReturnValue;
|
|
24630
24748
|
type DefaultFontFamily = Electron.DefaultFontFamily;
|
|
24631
24749
|
type Details = Electron.Details;
|
|
24632
24750
|
type DevicePermissionHandlerHandlerDetails = Electron.DevicePermissionHandlerHandlerDetails;
|
|
@@ -24788,6 +24906,7 @@ declare namespace Electron {
|
|
|
24788
24906
|
type WillFrameNavigateEvent = Electron.WillFrameNavigateEvent;
|
|
24789
24907
|
type WillNavigateEvent = Electron.WillNavigateEvent;
|
|
24790
24908
|
type WillResizeDetails = Electron.WillResizeDetails;
|
|
24909
|
+
type Animate = Electron.Animate;
|
|
24791
24910
|
type Children = Electron.Children;
|
|
24792
24911
|
type EditFlags = Electron.EditFlags;
|
|
24793
24912
|
type Env = Electron.Env;
|
|
@@ -24809,6 +24928,7 @@ declare namespace Electron {
|
|
|
24809
24928
|
type Endpoints = Electron.Endpoints;
|
|
24810
24929
|
type BaseWindowConstructorOptions = Electron.BaseWindowConstructorOptions;
|
|
24811
24930
|
type BrowserWindowConstructorOptions = Electron.BrowserWindowConstructorOptions;
|
|
24931
|
+
type ActivationArguments = Electron.ActivationArguments;
|
|
24812
24932
|
type BluetoothDevice = Electron.BluetoothDevice;
|
|
24813
24933
|
type Certificate = Electron.Certificate;
|
|
24814
24934
|
type CertificatePrincipal = Electron.CertificatePrincipal;
|
|
@@ -24926,6 +25046,7 @@ declare namespace Electron {
|
|
|
24926
25046
|
type BitmapOptions = Electron.BitmapOptions;
|
|
24927
25047
|
type BlinkMemoryInfo = Electron.BlinkMemoryInfo;
|
|
24928
25048
|
type BluetoothPairingHandlerHandlerDetails = Electron.BluetoothPairingHandlerHandlerDetails;
|
|
25049
|
+
type BoundsOptions = Electron.BoundsOptions;
|
|
24929
25050
|
type BrowserViewConstructorOptions = Electron.BrowserViewConstructorOptions;
|
|
24930
25051
|
type CallbackResponse = Electron.CallbackResponse;
|
|
24931
25052
|
type CertificateTrustDialogOptions = Electron.CertificateTrustDialogOptions;
|
|
@@ -24952,6 +25073,7 @@ declare namespace Electron {
|
|
|
24952
25073
|
type CreateFromBufferOptions = Electron.CreateFromBufferOptions;
|
|
24953
25074
|
type CreateInterruptedDownloadOptions = Electron.CreateInterruptedDownloadOptions;
|
|
24954
25075
|
type Data = Electron.Data;
|
|
25076
|
+
type DecryptStringAsyncReturnValue = Electron.DecryptStringAsyncReturnValue;
|
|
24955
25077
|
type DefaultFontFamily = Electron.DefaultFontFamily;
|
|
24956
25078
|
type Details = Electron.Details;
|
|
24957
25079
|
type DevicePermissionHandlerHandlerDetails = Electron.DevicePermissionHandlerHandlerDetails;
|
|
@@ -25113,6 +25235,7 @@ declare namespace Electron {
|
|
|
25113
25235
|
type WillFrameNavigateEvent = Electron.WillFrameNavigateEvent;
|
|
25114
25236
|
type WillNavigateEvent = Electron.WillNavigateEvent;
|
|
25115
25237
|
type WillResizeDetails = Electron.WillResizeDetails;
|
|
25238
|
+
type Animate = Electron.Animate;
|
|
25116
25239
|
type Children = Electron.Children;
|
|
25117
25240
|
type EditFlags = Electron.EditFlags;
|
|
25118
25241
|
type Env = Electron.Env;
|
|
@@ -25134,6 +25257,7 @@ declare namespace Electron {
|
|
|
25134
25257
|
type Endpoints = Electron.Endpoints;
|
|
25135
25258
|
type BaseWindowConstructorOptions = Electron.BaseWindowConstructorOptions;
|
|
25136
25259
|
type BrowserWindowConstructorOptions = Electron.BrowserWindowConstructorOptions;
|
|
25260
|
+
type ActivationArguments = Electron.ActivationArguments;
|
|
25137
25261
|
type BluetoothDevice = Electron.BluetoothDevice;
|
|
25138
25262
|
type Certificate = Electron.Certificate;
|
|
25139
25263
|
type CertificatePrincipal = Electron.CertificatePrincipal;
|
|
@@ -25250,6 +25374,7 @@ declare namespace Electron {
|
|
|
25250
25374
|
type BitmapOptions = Electron.BitmapOptions;
|
|
25251
25375
|
type BlinkMemoryInfo = Electron.BlinkMemoryInfo;
|
|
25252
25376
|
type BluetoothPairingHandlerHandlerDetails = Electron.BluetoothPairingHandlerHandlerDetails;
|
|
25377
|
+
type BoundsOptions = Electron.BoundsOptions;
|
|
25253
25378
|
type BrowserViewConstructorOptions = Electron.BrowserViewConstructorOptions;
|
|
25254
25379
|
type CallbackResponse = Electron.CallbackResponse;
|
|
25255
25380
|
type CertificateTrustDialogOptions = Electron.CertificateTrustDialogOptions;
|
|
@@ -25276,6 +25401,7 @@ declare namespace Electron {
|
|
|
25276
25401
|
type CreateFromBufferOptions = Electron.CreateFromBufferOptions;
|
|
25277
25402
|
type CreateInterruptedDownloadOptions = Electron.CreateInterruptedDownloadOptions;
|
|
25278
25403
|
type Data = Electron.Data;
|
|
25404
|
+
type DecryptStringAsyncReturnValue = Electron.DecryptStringAsyncReturnValue;
|
|
25279
25405
|
type DefaultFontFamily = Electron.DefaultFontFamily;
|
|
25280
25406
|
type Details = Electron.Details;
|
|
25281
25407
|
type DevicePermissionHandlerHandlerDetails = Electron.DevicePermissionHandlerHandlerDetails;
|
|
@@ -25437,6 +25563,7 @@ declare namespace Electron {
|
|
|
25437
25563
|
type WillFrameNavigateEvent = Electron.WillFrameNavigateEvent;
|
|
25438
25564
|
type WillNavigateEvent = Electron.WillNavigateEvent;
|
|
25439
25565
|
type WillResizeDetails = Electron.WillResizeDetails;
|
|
25566
|
+
type Animate = Electron.Animate;
|
|
25440
25567
|
type Children = Electron.Children;
|
|
25441
25568
|
type EditFlags = Electron.EditFlags;
|
|
25442
25569
|
type Env = Electron.Env;
|
|
@@ -25458,6 +25585,7 @@ declare namespace Electron {
|
|
|
25458
25585
|
type Endpoints = Electron.Endpoints;
|
|
25459
25586
|
type BaseWindowConstructorOptions = Electron.BaseWindowConstructorOptions;
|
|
25460
25587
|
type BrowserWindowConstructorOptions = Electron.BrowserWindowConstructorOptions;
|
|
25588
|
+
type ActivationArguments = Electron.ActivationArguments;
|
|
25461
25589
|
type BluetoothDevice = Electron.BluetoothDevice;
|
|
25462
25590
|
type Certificate = Electron.Certificate;
|
|
25463
25591
|
type CertificatePrincipal = Electron.CertificatePrincipal;
|
|
@@ -25668,6 +25796,7 @@ declare namespace Electron {
|
|
|
25668
25796
|
type BitmapOptions = Electron.BitmapOptions;
|
|
25669
25797
|
type BlinkMemoryInfo = Electron.BlinkMemoryInfo;
|
|
25670
25798
|
type BluetoothPairingHandlerHandlerDetails = Electron.BluetoothPairingHandlerHandlerDetails;
|
|
25799
|
+
type BoundsOptions = Electron.BoundsOptions;
|
|
25671
25800
|
type BrowserViewConstructorOptions = Electron.BrowserViewConstructorOptions;
|
|
25672
25801
|
type CallbackResponse = Electron.CallbackResponse;
|
|
25673
25802
|
type CertificateTrustDialogOptions = Electron.CertificateTrustDialogOptions;
|
|
@@ -25694,6 +25823,7 @@ declare namespace Electron {
|
|
|
25694
25823
|
type CreateFromBufferOptions = Electron.CreateFromBufferOptions;
|
|
25695
25824
|
type CreateInterruptedDownloadOptions = Electron.CreateInterruptedDownloadOptions;
|
|
25696
25825
|
type Data = Electron.Data;
|
|
25826
|
+
type DecryptStringAsyncReturnValue = Electron.DecryptStringAsyncReturnValue;
|
|
25697
25827
|
type DefaultFontFamily = Electron.DefaultFontFamily;
|
|
25698
25828
|
type Details = Electron.Details;
|
|
25699
25829
|
type DevicePermissionHandlerHandlerDetails = Electron.DevicePermissionHandlerHandlerDetails;
|
|
@@ -25855,6 +25985,7 @@ declare namespace Electron {
|
|
|
25855
25985
|
type WillFrameNavigateEvent = Electron.WillFrameNavigateEvent;
|
|
25856
25986
|
type WillNavigateEvent = Electron.WillNavigateEvent;
|
|
25857
25987
|
type WillResizeDetails = Electron.WillResizeDetails;
|
|
25988
|
+
type Animate = Electron.Animate;
|
|
25858
25989
|
type Children = Electron.Children;
|
|
25859
25990
|
type EditFlags = Electron.EditFlags;
|
|
25860
25991
|
type Env = Electron.Env;
|
|
@@ -25876,6 +26007,7 @@ declare namespace Electron {
|
|
|
25876
26007
|
type Endpoints = Electron.Endpoints;
|
|
25877
26008
|
type BaseWindowConstructorOptions = Electron.BaseWindowConstructorOptions;
|
|
25878
26009
|
type BrowserWindowConstructorOptions = Electron.BrowserWindowConstructorOptions;
|
|
26010
|
+
type ActivationArguments = Electron.ActivationArguments;
|
|
25879
26011
|
type BluetoothDevice = Electron.BluetoothDevice;
|
|
25880
26012
|
type Certificate = Electron.Certificate;
|
|
25881
26013
|
type CertificatePrincipal = Electron.CertificatePrincipal;
|
package/dist/version.json
CHANGED