vibe-tools
Version:
CLI tools for AI agents
11 lines (10 loc) • 381 B
TypeScript
import type { Command, CommandGenerator } from '../../types.ts';
import { type GithubOptions } from './utils.ts';
export declare class PrCommand implements Command {
constructor();
private fetchComments;
private fetchReviewComments;
private formatDate;
private groupReviewCommentsByFile;
execute(query: string, options?: GithubOptions): CommandGenerator;
}