UNPKG

leaf-framework

Version:
15 lines (14 loc) 304 B
export declare abstract class LoggerService { /** * Log the message */ abstract log(msg: string): void; /** * Log an error message */ abstract error(msg: string): void; /** * Log a warning message */ abstract warn(msg: string): void; }