1 | import { Publisher, UploadTask, PublishContext } from "electron-publish";
|
2 | import { SnapStoreOptions } from "builder-util-runtime/out/publishOptions";
|
3 | export 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 | }
|