codecrucible-synth
Version:
Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability
9 lines • 410 B
TypeScript
export interface CLIOutputManager {
outputError: (message: string, exitCode?: number) => void;
outputInfo: (message: string) => void;
outputDebug: (message: string) => void;
outputProgress: (message: string) => void;
configure: (options: Record<string, unknown>) => void;
}
export declare function createCLIOutputManager(): CLIOutputManager;
//# sourceMappingURL=cli-output-manager.d.ts.map