(message: string, ...args: any[])
| 296 | } |
| 297 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 298 | public debug(message: string, ...args: any[]): void { |
| 299 | this.channel.debug(message, ...args); |
| 300 | } |
| 301 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 302 | public info(message: string, ...args: any[]): void { |
| 303 | this.channel.info(message, ...args); |
no outgoing calls
no test coverage detected