UNPKG

review-copilot

Version:

ReviewCopilot - AI-powered code review assistant with customizable prompts

9 lines (8 loc) 270 B
interface GitChange { file: string; content: string; } export declare function getGitChanges(): Promise<GitChange[]>; export declare function getCurrentBranchName(): Promise<string>; export declare function getCurrentCommitMessage(): Promise<string>; export {};