update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
8
electron/node_modules/electron-publish/out/gitHubPublisher.d.ts
generated
vendored
8
electron/node_modules/electron-publish/out/gitHubPublisher.d.ts
generated
vendored
|
|
@ -1,9 +1,9 @@
|
|||
/// <reference types="node" />
|
||||
import { Arch } from "builder-util";
|
||||
import { GithubOptions } from "builder-util-runtime";
|
||||
import { ClientRequest } from "http";
|
||||
import { Lazy } from "lazy-val";
|
||||
import { HttpPublisher, PublishContext, PublishOptions } from "./publisher";
|
||||
import { HttpPublisher } from "./httpPublisher";
|
||||
import { PublishContext, PublishOptions } from "./index";
|
||||
export interface Release {
|
||||
id: number;
|
||||
tag_name: string;
|
||||
|
|
@ -16,13 +16,15 @@ export declare class GitHubPublisher extends HttpPublisher {
|
|||
private readonly info;
|
||||
private readonly version;
|
||||
private readonly options;
|
||||
private readonly releaseBody?;
|
||||
private readonly releaseName?;
|
||||
private readonly tag;
|
||||
readonly _release: Lazy<any>;
|
||||
private readonly token;
|
||||
readonly providerName = "github";
|
||||
private readonly releaseType;
|
||||
private releaseLogFields;
|
||||
constructor(context: PublishContext, info: GithubOptions, version: string, options?: PublishOptions);
|
||||
constructor(context: PublishContext, info: GithubOptions, version: string, options?: PublishOptions, releaseBody?: string | null | undefined, releaseName?: string | null | undefined);
|
||||
private getOrCreateRelease;
|
||||
private overwriteArtifact;
|
||||
protected doUpload(fileName: string, arch: Arch, dataLength: number, requestProcessor: (request: ClientRequest, reject: (error: Error) => void) => void): Promise<any>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue