UNPKG

github-pr-automation

Version:

MCP server and CLI for automated GitHub PR management, review resolution, and workflow optimization

10 lines 566 B
import type { GitHubClient } from "../../github/client.js"; import type { ManageStackedPRsInput, ManageStackedPRsOutput } from "./schema.js"; /** * Manage stacked pull requests and their dependencies * @param client - GitHub API client instance * @param input - Input parameters including base and dependent PR identifiers * @returns Promise resolving to management commands and analysis */ export declare function handleManageStackedPRs(client: GitHubClient, input: ManageStackedPRsInput): Promise<ManageStackedPRsOutput>; //# sourceMappingURL=handler.d.ts.map