review-copilot
Version:
ReviewCopilot - AI-powered code review assistant with customizable prompts
29 lines (28 loc) • 896 B
TypeScript
type ChalkColor = 'green' | 'blue' | 'yellow' | 'red' | 'gray' | 'white' | 'cyan';
/**
* Logger utility class for consistent console output with styling
*/
export declare class Logger {
static divider(char?: string, length?: number, color?: ChalkColor): void;
static info(message: string): void;
static success(message: string): void;
static warning(message: string): void;
static error(message: string): void;
static gray(message: string): void;
static white(message: string): void;
static cyan(message: string): void;
static yellow(message: string): void;
static commitInfo(commit: {
hash: string;
author: string;
date: string;
message: string;
}, index: number): void;
static prInfo(info: {
message: string;
hash: string;
author: string;
date: string;
}): void;
}
export {};