Member Junction
    Preparing search index...

    Inclusive byte range for a streaming read, modelled on the HTTP Range header (bytes=Start-End). The range is inclusive on both ends, matching HTTP Range / Content-Range semantics.

    type ByteRange = {
        End?: number;
        Start: number;
    }
    Index

    Properties

    Properties

    End?: number

    Optional. The last byte offset to return (inclusive). When omitted, the stream runs from Start to the end of the object (EOF).

    Start: number

    The first byte offset to return (0-based, inclusive).