LarpixClient/electron/node_modules/electron-publish/out/bitbucketPublisher.d.ts
olcxja fb6c8b6ee9
All checks were successful
Android Build / publish (push) Successful in 55s
Linux Build / publish (push) Successful in 1m6s
update electron to v43
2026-07-09 22:38:33 +02:00

17 lines
877 B
TypeScript

import { Arch } from "builder-util";
import { BitbucketOptions } from "builder-util-runtime/out/publishOptions";
import { ClientRequest } from "http";
import { PublishContext } from "./";
import { HttpPublisher } from "./httpPublisher";
export declare class BitbucketPublisher extends HttpPublisher {
readonly providerName = "bitbucket";
readonly hostname = "api.bitbucket.org";
private readonly info;
private readonly auth;
private readonly basePath;
constructor(context: PublishContext, info: BitbucketOptions);
protected doUpload(fileName: string, _arch: Arch, _dataLength: number, _requestProcessor: (request: ClientRequest, reject: (error: Error) => void) => void, file: string): Promise<any>;
deleteRelease(filename: string): Promise<void>;
toString(): string;
static convertAppPassword(username: string, token: string): string;
}