s3Publisher.d.ts 591 B

123456789101112
  1. import { S3Options } from "builder-util-runtime";
  2. import { PublishContext } from "electron-publish";
  3. import { BaseS3Publisher } from "./BaseS3Publisher";
  4. export default class S3Publisher extends BaseS3Publisher {
  5. private readonly info;
  6. readonly providerName = "s3";
  7. constructor(context: PublishContext, info: S3Options);
  8. static checkAndResolveOptions(options: S3Options, channelFromAppVersion: string | null, errorIfCannot: boolean): Promise<void>;
  9. protected getBucketName(): string;
  10. protected configureS3Options(args: Array<string>): void;
  11. toString(): string;
  12. }