/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; /** * Publishes a tarball to the package registry unless the version is already published. */ export default class PublishTarballCommand extends BaseCommand { static readonly summary = "Publishes tarballs to the package registry unless the version is already published."; static readonly description = "Used to publish a portion of tarballs from a folder based on an input file. The file can contain package names or tarball names."; static readonly flags: { dir: import("@oclif/core/interfaces").OptionFlag; orderFile: import("@oclif/core/interfaces").OptionFlag; tarball: import("@oclif/core/interfaces").BooleanFlag; retry: import("@oclif/core/interfaces").OptionFlag; dryRun: import("@oclif/core/interfaces").BooleanFlag; access: import("@oclif/core/interfaces").OptionFlag; publishArgs: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; } //# sourceMappingURL=tarballs.d.ts.map