(message: string, ...args: any[])
| 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); |
| 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); |
no outgoing calls
no test coverage detected