forked from olcxjas-softworks/LarpixClient
update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
20
electron/node_modules/@electron/notarize/lib/index.d.ts
generated
vendored
Normal file
20
electron/node_modules/@electron/notarize/lib/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { NotarizeOptions, NotarizeOptionsLegacy, NotarizeOptionsNotaryTool } from './types';
|
||||
export { NotarizeOptions };
|
||||
export { validateNotaryToolAuthorizationArgs as validateAuthorizationArgs } from './validate-args';
|
||||
/**
|
||||
* Sends your app to Apple for notarization with `notarytool` and staples a successful
|
||||
* notarization result to the app bundle. This includes your {@link NotaryToolNotarizeAppOptions.appPath | appPath}
|
||||
* as well as one of three valid credential authentication strategies.
|
||||
*
|
||||
* See {@link NotaryToolCredentials} for authentication options.
|
||||
*
|
||||
* @category Core
|
||||
* @param args Options for notarization
|
||||
* @returns The Promise resolves once notarization is complete. Note that this may take a few minutes.
|
||||
*/
|
||||
declare function notarize(args: NotarizeOptionsNotaryTool): Promise<void>;
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
declare function notarize(args: NotarizeOptionsLegacy): Promise<void>;
|
||||
export { notarize };
|
||||
Loading…
Add table
Add a link
Reference in a new issue