review-copilot
Version:
ReviewCopilot - AI-powered code review assistant with customizable prompts
11 lines (10 loc) • 326 B
TypeScript
export declare const REVIEW_LANGUAGES: {
readonly en: "english";
readonly zh: "simplified chinese";
readonly ja: "japanese";
readonly ko: "korean";
};
export type ReviewLanguage = keyof typeof REVIEW_LANGUAGES;
export declare const SYSTEM_MESSAGES: {
CODE_REVIEW: (language?: ReviewLanguage) => string;
};