(v?: number | boolean)
| 285 | public timeout(): number | boolean; |
| 286 | public timeout(v?: number | boolean): this | number | boolean; |
| 287 | public timeout(v?: number | boolean): this | number | boolean { |
| 288 | if (!arguments.length) return this._timeout; |
| 289 | this._timeout = v; |
| 290 | return this; |
| 291 | } |
| 292 | |
| 293 | /** |
| 294 | * Starts trying to reconnect if reconnection is enabled and we have not |