/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import * as semver from "semver"; import { BaseCommand } from "../../library/index.js"; export default class LatestVersionsCommand extends BaseCommand { 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 deprecated = "This command is deprecated and will be removed in a future release. Use vnext:check:latestVersions instead."; static readonly args: { readonly version: import("@oclif/core/interfaces").Arg; readonly package_or_release_group: import("@oclif/core/interfaces").Arg>; }; run(): Promise; } //# sourceMappingURL=latestVersions.d.ts.map