/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommandWithBuildProject } from "../../../library/commands/base.js"; export default class LatestVersionsCommand extends BaseCommandWithBuildProject { static readonly summary = "Determines if an input version matches a latest minor release version. Intended to be used in the Fluid Framework CI pipeline only."; static readonly description = "This command is used in CI to determine if a pipeline was triggered by a release branch with the latest minor version of a major version."; static readonly flags: { readonly releaseGroup: import("@oclif/core/interfaces").OptionFlag; readonly version: import("@oclif/core/interfaces").OptionFlag; readonly tags: import("@oclif/core/interfaces").OptionFlag; readonly searchPath: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; } //# sourceMappingURL=latestVersions.d.ts.map