| 118 | } |
| 119 | |
| 120 | export interface Logger { |
| 121 | info(message: string, category?: LogCategory): void; |
| 122 | warn(message: any, category?: LogCategory): void; |
| 123 | error(error: any, category?: LogCategory): void; |
| 124 | } |
| 125 | |
| 126 | export interface LogMessage { |
| 127 | readonly message: string; |
no outgoing calls
no test coverage detected