436a9631fc
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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;
|
|
}
|