()
| 501 | * @since 4.0.0 |
| 502 | */ |
| 503 | export const toChannelWith = <IE = never>() => |
| 504 | ( |
| 505 | self: Socket |
| 506 | ): Channel.Channel< |
| 507 | NonEmptyReadonlyArray<Uint8Array>, |
| 508 | SocketError | IE, |
| 509 | void, |
| 510 | NonEmptyReadonlyArray<Uint8Array | string | CloseEvent>, |
| 511 | IE |
| 512 | > => toChannel(self) |
| 513 | |
| 514 | /** |
| 515 | * Creates a binary socket `Channel` from the `Socket` service in the |
no test coverage detected