(
operation: K,
input: OperationInput<K>,
)
| 1527 | } |
| 1528 | |
| 1529 | request<K extends DirectRequestOperationKey>( |
| 1530 | operation: K, |
| 1531 | input: OperationInput<K>, |
| 1532 | ): Promise<OperationOutput<K>> { |
| 1533 | this.#assertOpen(); |
| 1534 | return this.connection.request(operation, input); |
| 1535 | } |
| 1536 | |
| 1537 | #assertOpen(): void { |
| 1538 | if (this.#closeTask) throw clientClosed(); |
no test coverage detected