Files
Remote-Control-Center/mc_test/node_modules/app-builder-lib/out/publish/SnapStorePublisher.d.ts
2025-11-25 09:56:15 +03:00

10 lines
411 B
TypeScript
Executable File

import { Publisher, UploadTask, PublishContext } from "electron-publish";
import { SnapStoreOptions } from "builder-util-runtime/out/publishOptions";
export declare class SnapStorePublisher extends Publisher {
private options;
readonly providerName = "snapStore";
constructor(context: PublishContext, options: SnapStoreOptions);
upload(task: UploadTask): Promise<any>;
toString(): string;
}