mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
12 lines
487 B
TypeScript
12 lines
487 B
TypeScript
import { BaseS3Options } from "builder-util-runtime";
|
|
import { PublishContext, UploadTask } from "..";
|
|
import { Publisher } from "../publisher";
|
|
export declare abstract class BaseS3Publisher extends Publisher {
|
|
private options;
|
|
protected constructor(context: PublishContext, options: BaseS3Options);
|
|
protected abstract getBucketName(): string;
|
|
protected configureS3Options(args: Array<string>): void;
|
|
upload(task: UploadTask): Promise<any>;
|
|
toString(): string;
|
|
}
|