()
| 312 | * @category constructors |
| 313 | */ |
| 314 | export const makeChannel = <IE = never>(): Channel.Channel< |
| 315 | Chunk.Chunk<Uint8Array>, |
| 316 | Chunk.Chunk<Uint8Array | string | CloseEvent>, |
| 317 | SocketError | IE, |
| 318 | IE, |
| 319 | void, |
| 320 | unknown, |
| 321 | Socket |
| 322 | > => Channel.unwrap(Effect.map(Socket, toChannelWith<IE>())) |
| 323 | |
| 324 | /** |
| 325 | * @since 1.0.0 |
nothing calls this directly
no test coverage detected