Skip to main content
Module

x/rimbu/stream/async/async-streamable.ts

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
File
import type { AsyncStream } from '../../stream/async/index.ts';
export interface AsyncStreamable<T> { asyncStream(): AsyncStream<T>;}
export namespace AsyncStreamable { export interface NonEmpty<T> { asyncStream(): AsyncStream.NonEmpty<T>; }}