/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; export default class CheckChangesetCommand extends BaseCommand { static readonly summary = "Checks if a changeset was added when compared against a branch. This is used in CI to enforce that changesets are present for a PR."; static readonly enableJsonFlag = true; static readonly flags: { readonly branch: import("@oclif/core/interfaces").OptionFlag; }; static readonly examples: { description: string; command: string; }[]; run(): Promise<{ changesetFound: boolean; branch: string; changesetPath?: string; }>; } //# sourceMappingURL=changeset.d.ts.map