Documentation
    Preparing search index...

    Interface Subjectable<Input, Output>

    A common interface for subjects.

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

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    finished: boolean

    Methods