stuff
This commit is contained in:
19
buildfiles/node_modules/app-builder-lib/out/publish/SnapStorePublisher.d.ts
generated
vendored
Normal file
19
buildfiles/node_modules/app-builder-lib/out/publish/SnapStorePublisher.d.ts
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
import { Publisher, UploadTask, PublishContext } from "electron-publish";
|
||||
import { PublishConfiguration } from "builder-util-runtime";
|
||||
export declare class SnapStorePublisher extends Publisher {
|
||||
private options;
|
||||
readonly providerName = "snapStore";
|
||||
constructor(context: PublishContext, options: SnapStoreOptions);
|
||||
upload(task: UploadTask): Promise<any>;
|
||||
toString(): string;
|
||||
}
|
||||
/**
|
||||
* [Snap Store](https://snapcraft.io/) options.
|
||||
*/
|
||||
export interface SnapStoreOptions extends PublishConfiguration {
|
||||
/**
|
||||
* The list of channels the snap would be released.
|
||||
* @default ["edge"]
|
||||
*/
|
||||
readonly channels?: string | Array<string> | null;
|
||||
}
|
Reference in New Issue
Block a user