(
pubsub: PubSub.PubSub<In>,
options?: {
readonly shutdown?: boolean | undefined
}
)
| 1425 | |
| 1426 | /** @internal */ |
| 1427 | export const fromPubSub = <In>( |
| 1428 | pubsub: PubSub.PubSub<In>, |
| 1429 | options?: { |
| 1430 | readonly shutdown?: boolean | undefined |
| 1431 | } |
| 1432 | ): Sink.Sink<void, In> => fromQueue(pubsub, options) |
| 1433 | |
| 1434 | /** @internal */ |
| 1435 | export const fromPush = <In, L0, R0, L, R>( |
nothing calls this directly
no test coverage detected