(path: Parameters<typeof pathToRegexp>[0], callback?: WebSocketCallback)
| 58 | } |
| 59 | |
| 60 | ws(path: Parameters<typeof pathToRegexp>[0], callback?: WebSocketCallback) { |
| 61 | const layer = new WebSocketLayer(path, callback); |
| 62 | this.wsStack.push(layer); |
| 63 | this.disposeLastOp = () => { |
| 64 | layer.close(); |
| 65 | remove(this.wsStack, layer); |
| 66 | }; |
| 67 | return layer; |
| 68 | } |
| 69 | } |