| 343 | } |
| 344 | |
| 345 | interface LoggingControl extends LoggingControlConfig { |
| 346 | getConfig(): LoggingControlConfig; |
| 347 | applyConfig(config: Partial<LoggingControlConfig>): void; |
| 348 | addLogListener(listener: (...args: any[]) => void): void; |
| 349 | removeLogListener(listener: (...args: any[]) => void): void; |
| 350 | } |
| 351 | |
| 352 | interface Events { |
| 353 | ERROR: string; |
no outgoing calls
no test coverage detected
searching dependent graphs…