Documentation
    Preparing search index...

    Interface Forkable<T>

    A common interface for forkable streams.

    interface Forkable<T> {
        finished: boolean;
        fork(
            underlyingSource?: UnderlyingDefaultSource<T>,
            queuingStrategy?: QueuingStrategy<T>,
        ): ReadableStream<T>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    finished: boolean

    Methods

    • Parameters

      • OptionalunderlyingSource: UnderlyingDefaultSource<T>
      • OptionalqueuingStrategy: QueuingStrategy<T>

      Returns ReadableStream<T>