UNPKG

asyncerator

Version:

Provide supporting types for AsyncIterable/AsyncIterableIterators, promisified stream.pipeline implementation, and Array-like utility operators, sources and sinks.

7 lines (6 loc) 176 B
import type { Operator } from './index'; /** * Emit a value before a stream starts. * @param value */ export default function <Input>(value: Input): Operator<Input, Input>;