electron-updater
Version:
Cross platform updater for electron applications
15 lines (14 loc) • 675 B
TypeScript
import { BitbucketOptions, UpdateInfo } from "builder-util-runtime";
import { AppUpdater } from "../AppUpdater";
import { ResolvedUpdateFileInfo } from "../types";
import { Provider, ProviderRuntimeOptions } from "./Provider";
export declare class BitbucketProvider extends Provider<UpdateInfo> {
private readonly configuration;
private readonly updater;
private readonly baseUrl;
constructor(configuration: BitbucketOptions, updater: AppUpdater, runtimeOptions: ProviderRuntimeOptions);
private get channel();
getLatestVersion(): Promise<UpdateInfo>;
resolveFiles(updateInfo: UpdateInfo): Array<ResolvedUpdateFileInfo>;
toString(): string;
}