UNPKG

electron-builder

Version:

A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box

13 lines (12 loc) 529 B
#! /usr/bin/env node import { UploadTask } from "app-builder-lib"; import { Publish } from "app-builder-lib/out/core"; export declare function publish(args: { files: string[]; version: string | undefined; configurationFilePath: string | undefined; }): Promise<UploadTask[] | null>; export declare function publishArtifactsWithOptions(uploadOptions: { file: string; arch: string | null; }[], buildVersion?: string, configurationFilePath?: string, publishConfiguration?: Publish): Promise<UploadTask[] | null>;