/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/index.js"; /** * This command class is used to merge two branches based on the batch size provided. * It looks for the last common commit between two branches and computes the remaining commits to be merged. * Later, it creates a pull request based on the batch size passed. */ export default class CheckPrApprovalCommand extends BaseCommand { static readonly description = "Check if a PR has been approved by a list of users or members of a team."; static readonly enableJsonFlag = true; static readonly flags: { readonly repo: import("@oclif/core/interfaces").OptionFlag<{ repo: string; owner: string; }, import("@oclif/core/interfaces").CustomOptions>; readonly pr: import("@oclif/core/interfaces").OptionFlag; readonly team: import("@oclif/core/interfaces").OptionFlag; readonly approvers: import("@oclif/core/interfaces").OptionFlag; readonly token: import("@oclif/core/interfaces").OptionFlag; readonly ghActions: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; } //# sourceMappingURL=prApproval.d.ts.map