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
30
electron/node_modules/electron-publish/out/index.d.ts
generated
vendored
Normal file
30
electron/node_modules/electron-publish/out/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
import { Arch } from "builder-util";
|
||||
import { CancellationToken } from "builder-util-runtime";
|
||||
import { MultiProgress } from "./multiProgress";
|
||||
export { MultiProgress };
|
||||
export { ProgressBar } from "./progress";
|
||||
export { BitbucketPublisher } from "./bitbucketPublisher";
|
||||
export { GitHubPublisher } from "./gitHubPublisher";
|
||||
export { GitlabPublisher } from "./gitlabPublisher";
|
||||
export { KeygenPublisher } from "./keygenPublisher";
|
||||
export { S3Publisher } from "./s3/s3Publisher";
|
||||
export { SpacesPublisher } from "./s3/spacesPublisher";
|
||||
export { SnapStorePublisher, resolveSnapCredentials } from "./snapStorePublisher";
|
||||
export type PublishPolicy = "onTag" | "onTagOrDraft" | "always" | "never";
|
||||
export { ProgressCallback } from "./progress";
|
||||
export interface PublishOptions {
|
||||
publish?: PublishPolicy | null;
|
||||
}
|
||||
export { HttpPublisher } from "./httpPublisher";
|
||||
export { getCiTag, Publisher } from "./publisher";
|
||||
export interface PublishContext {
|
||||
readonly cancellationToken: CancellationToken;
|
||||
readonly progress: MultiProgress | null;
|
||||
}
|
||||
export interface UploadTask {
|
||||
file: string;
|
||||
fileContent?: Buffer | null;
|
||||
arch: Arch | null;
|
||||
safeArtifactName?: string | null;
|
||||
timeout?: number | null;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue