/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../library/index.js"; /** * The root `info` command. */ export default class InfoCommand extends BaseCommand { static readonly description = "Get info about the repo, release groups, and packages."; static readonly flags: { releaseGroup: import("@oclif/core/interfaces").OptionFlag<"client" | "server" | "build-tools" | "gitrest" | "historian" | undefined, import("@oclif/core/interfaces").CustomOptions>; columns: import("@oclif/core/interfaces").OptionFlag; private: import("@oclif/core/interfaces").BooleanFlag; }; static readonly enableJsonFlag: boolean; run(): Promise[]>; } //# sourceMappingURL=info.d.ts.map