@scolastico-dev/walu
    Preparing search index...

    Interface IDownloadChunk

    Represents a chunk of downloaded data. Each chunk contains an optional identifier and the binary data as a Uint8Array.

    interface IDownloadChunk {
        data: Uint8Array;
        id?: number;
    }
    Index

    Properties

    Properties

    data: Uint8Array
    id?: number