UNPKG

411 BTypeScriptView Raw
1import { Publisher, UploadTask, PublishContext } from "electron-publish";
2import { SnapStoreOptions } from "builder-util-runtime/out/publishOptions";
3export declare class SnapStorePublisher extends Publisher {
4 private options;
5 readonly providerName = "snapStore";
6 constructor(context: PublishContext, options: SnapStoreOptions);
7 upload(task: UploadTask): Promise<any>;
8 toString(): string;
9}