ai-coding-assistants-setup
Version:
Setup tool for integrating AI coding assistants into development workflows
59 lines • 1.65 kB
TypeScript
/**
* Feedback utility for providing consistent, styled console messages
* with appropriate emoji indicators
*/
export declare class Feedback {
/**
* Log a success message
* @param message The message to display
*/
static success(message: string): void;
/**
* Log a warning message
* @param message The message to display
*/
static warning(message: string): void;
/**
* Log an error message
* @param message The message to display
*/
static error(message: string): void;
/**
* Log an information message
* @param message The message to display
*/
static info(message: string): void;
/**
* Log an AI-related message
* @param message The message to display
*/
static ai(message: string): void;
/**
* Log a process/workflow message
* @param message The message to display
*/
static process(message: string): void;
/**
* Log a tip or suggestion
* @param message The message to display
*/
static tip(message: string): void;
/**
* Create a section header
* @param title The title of the section
*/
static section(title: string): void;
/**
* Create a subsection header
* @param title The title of the subsection
*/
static subsection(title: string): void;
/**
* Show a progress indicator with custom emoji
* @param message The message to display
* @param emoji The emoji to use (defaults to 🔄)
*/
static progress(message: string, emoji?: string): void;
}
export default Feedback;
//# sourceMappingURL=feedback.d.ts.map