/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/index.js"; /** * Generates a summary of all changesets and outputs the results to a file. This is used to generate an UPCOMING.md file * that provides a single place where developers can see upcoming changes. */ export default class GenerateUpcomingCommand extends BaseCommand { static readonly summary = "Generates a summary of all changesets. This is used to generate an UPCOMING.md file that provides a single place where developers can see upcoming changes."; static readonly state = "deprecated"; static readonly deprecationOptions: { version: string; to: string; }; static readonly enableJsonFlag = true; static readonly flags: { readonly releaseGroup: import("@oclif/core/interfaces").OptionFlag<"client" | "server" | "build-tools" | "gitrest" | "historian", import("@oclif/core/interfaces").CustomOptions>; readonly releaseType: import("@oclif/core/interfaces").OptionFlag<"major" | "minor", import("@oclif/core/interfaces").CustomOptions>; readonly out: import("@oclif/core/interfaces").OptionFlag; }; static readonly examples: { description: string; command: string; }[]; run(): Promise; } //# sourceMappingURL=upcoming.d.ts.map