it
    Preparing search index...

    Interface ByteStreamOpts

    interface ByteStreamOpts {
        yieldBytes?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    yieldBytes?: boolean

    After the stream is unwrapped, any bytes that have been read from the incoming stream will be yielded in-order as Uint8Array(s).

    To yield a single Uint8ArrayList with all unread bytes instead, pass false here.