(message: string, ...args: any[])
| 304 | } |
| 305 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 306 | public warn(message: string, ...args: any[]): void { |
| 307 | this.channel.warn(message, ...args); |
| 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); |
no outgoing calls
no test coverage detected