(...args: any[])
| 444 | |
| 445 | private isDebugging = false |
| 446 | private debug(...args: any[]) { |
| 447 | if (this.isDebugging) { |
| 448 | // eslint-disable-next-line no-console |
| 449 | console.debug(...args) |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | private readonly presenceType: R['typeName'] | null |
| 454 |
no test coverage detected