1 | import { AllPublishOptions } from "builder-util-runtime";
|
2 | import { AppAdapter } from "./AppAdapter";
|
3 | import { AppUpdater, DownloadUpdateOptions } from "./AppUpdater";
|
4 | export declare class MacUpdater extends AppUpdater {
|
5 | private readonly nativeUpdater;
|
6 | private squirrelDownloadedUpdate;
|
7 | private server?;
|
8 | constructor(options?: AllPublishOptions, app?: AppAdapter);
|
9 | private debug;
|
10 | private closeServerIfExists;
|
11 | protected doDownloadUpdate(downloadUpdateOptions: DownloadUpdateOptions): Promise<Array<string>>;
|
12 | private updateDownloaded;
|
13 | quitAndInstall(): void;
|
14 | }
|