thedesk/app/node_modules/app-builder-lib/out/publish/s3/s3Publisher.d.ts
2019-09-12 23:38:13 +09:00

13 lines
591 B
TypeScript

import { S3Options } from "builder-util-runtime";
import { PublishContext } from "electron-publish";
import { BaseS3Publisher } from "./BaseS3Publisher";
export default 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;
}