(v?: boolean)
| 283 | public serveClient(): boolean; |
| 284 | public serveClient(v?: boolean): this | boolean; |
| 285 | public serveClient(v?: boolean): this | boolean { |
| 286 | if (!arguments.length) return this._serveClient; |
| 287 | this._serveClient = v!; |
| 288 | return this; |
| 289 | } |
| 290 | |
| 291 | /** |
| 292 | * Executes the middleware for an incoming namespace not already created on the server. |