( pubsub: PubSub.PubSub<Either.Either<Elem, Exit.Exit<Done, Err>>> )
| 2207 | |
| 2208 | /** @internal */ |
| 2209 | export const toPubSub = <Done, Err, Elem>( |
| 2210 | pubsub: PubSub.PubSub<Either.Either<Elem, Exit.Exit<Done, Err>>> |
| 2211 | ): Channel.Channel<never, Elem, never, Err, unknown, Done> => toQueue(pubsub) |
| 2212 | |
| 2213 | /** @internal */ |
| 2214 | export const toPull = <OutElem, InElem, OutErr, InErr, OutDone, InDone, Env>( |