mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
11 lines
426 B
TypeScript
11 lines
426 B
TypeScript
import { SnapStoreOptions } from "builder-util-runtime/out/publishOptions";
|
|
import { PublishContext, UploadTask } from ".";
|
|
import { Publisher } from "./publisher";
|
|
export declare class SnapStorePublisher extends Publisher {
|
|
private options;
|
|
readonly providerName = "snapStore";
|
|
constructor(context: PublishContext, options: SnapStoreOptions);
|
|
upload(task: UploadTask): Promise<any>;
|
|
toString(): string;
|
|
}
|