@traversets/code-extractor
Version:
The TypeScript Code Extractor and Analyzer can be handy for RAG (Retrieval-Augmented Generation) systems for codebases. It provides a detailed and structured representation of the codebase that can be converted into embeddings, enabling more effective adv
10 lines (9 loc) • 382 B
TypeScript
import { IContextAwareLogger } from "./logger-service.interface";
export declare class ApplicationLogger implements IContextAwareLogger {
private logger;
constructor();
debug(context: any, message: string): void;
log(context: any, message: string): void;
error(context: any, message: string, error: Error): void;
warn(context: any, message: string): void;
}