mira-consciousness
Version:
Memory & Intelligence Retention Archive - Preserving The Spark
12 lines • 380 B
TypeScript
/**
* Simple logger utility for MIRA
*/
export interface Logger {
info: (message: string, ...args: any[]) => void;
warn: (message: string, ...args: any[]) => void;
error: (message: string, ...args: any[]) => void;
debug: (message: string, ...args: any[]) => void;
}
export declare const logger: Logger;
export default logger;
//# sourceMappingURL=logger.d.ts.map