github-pr-automation
Version:
MCP server and CLI for automated GitHub PR management, review resolution, and workflow optimization
10 lines • 523 B
TypeScript
import { GitHubClient } from "../../github/client.js";
import { ResolveReviewThreadInput, ResolveReviewThreadOutput } from "./schema.js";
/**
* Resolve a GitHub review thread
* @param client - GitHub client instance
* @param input - Input containing PR identifier and thread/comment ID
* @returns Promise resolving to resolution status
*/
export declare function handleResolveReviewThread(client: GitHubClient, input: ResolveReviewThreadInput): Promise<ResolveReviewThreadOutput>;
//# sourceMappingURL=handler.d.ts.map