/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; /** * Transforms a markdown release notes file into a format appropriate for use in a GitHub Release. */ export default class TransformReleaseNotesCommand extends BaseCommand { static readonly summary = "Transforms a markdown release notes file into a format appropriate for use in a GitHub Release. This is used to transform in-repo release notes such that they can be automatically posted to our GitHub Releases."; static readonly flags: { readonly inFile: import("@oclif/core/interfaces").OptionFlag; readonly outFile: import("@oclif/core/interfaces").OptionFlag; }; static readonly examples: { description: string; command: string; }[]; run(): Promise; } //# sourceMappingURL=releaseNotes.d.ts.map