(type: TYPE, ...args: Parameters<BackInTemplate[TYPE]>)
| 184 | } |
| 185 | |
| 186 | send<TYPE extends keyof BackInTemplate>(type: TYPE, ...args: Parameters<BackInTemplate[TYPE]>): void { |
| 187 | server_send(this.client, type, ...args); |
| 188 | } |
| 189 | |
| 190 | allowDeath(): void { |
| 191 | this.abortReconnects = true; |
nothing calls this directly
no test coverage detected