mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
13 lines
577 B
TypeScript
13 lines
577 B
TypeScript
import { S3Options } from "builder-util-runtime";
|
|
import { PublishContext } from "..";
|
|
import { BaseS3Publisher } from "./baseS3Publisher";
|
|
export declare class S3Publisher extends BaseS3Publisher {
|
|
private readonly info;
|
|
readonly providerName = "s3";
|
|
constructor(context: PublishContext, info: S3Options);
|
|
static checkAndResolveOptions(options: S3Options, channelFromAppVersion: string | null, errorIfCannot: boolean): Promise<void>;
|
|
protected getBucketName(): string;
|
|
protected configureS3Options(args: Array<string>): void;
|
|
toString(): string;
|
|
}
|