Subscribe to ALL incoming frames. Returns an unsubscribe handle.
(handler: (frame: AnyFrame) => void)
| 457 | // ── WS observation ────────────────────────────────────────────────────── |
| 458 | /** Subscribe to ALL incoming frames. Returns an unsubscribe handle. */ |
| 459 | onFrame(handler: (frame: AnyFrame) => void): () => void { |
| 460 | return this._requireWs().onFrame(handler); |
| 461 | } |
| 462 | |
| 463 | /** Wait for the next frame satisfying `predicate`. */ |
| 464 | waitForFrame( |
no test coverage detected