(message: string, ...args: any[])
| 308 | } |
| 309 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 310 | public error(message: string, ...args: any[]): void { |
| 311 | this.channel.error(message, ...args); |
| 312 | } |
| 313 | public clear(): void { |
| 314 | this.channel.clear(); |
| 315 | } |
no outgoing calls
no test coverage detected