StreamWithSegments<TStream>: TStream & {
    segments: Map<string, SegmentWithStream<TStream>>;
}

Represents a stream that includes multiple segments, each associated with the stream.

Type Parameters

  • TStream extends Stream = Stream

    Type of the underlying stream data structure.