Interface Subjectable<Input, Output>

A common interface for subjects.

interface Subjectable<Input, Output> {
    finished: boolean;
    control(): Controllable<Input>;
    fork(underlyingSource?, queuingStrategy?): ReadableStream<Output>;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

finished: boolean

Methods

Generated using TypeDoc