/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; /** * Promotes a package to the Release view in Azure DevOps Artifacts. */ export default class PromotePackageCommand extends BaseCommand { static readonly summary = "Promotes a package to the Release view in Azure DevOps Artifacts."; static readonly description = "Used to promote a package to the Release view if it's a release build and in the build feed. THIS COMMAND IS INTENDED FOR USE IN FLUID FRAMEWORK CI PIPELINES ONLY."; static readonly flags: { version: import("@oclif/core/interfaces").OptionFlag; orderFile: import("@oclif/core/interfaces").OptionFlag; token: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; private getFeedPromotionUrl; private promotePackage; } //# sourceMappingURL=package.d.ts.map