@flowscripter/pluggable-io-framework-api
    Preparing search index...

    Interface JsChunk

    A chunk whose payload lives in a normal JS-managed Uint8Array.

    interface JsChunk {
        attributes?: Readonly<Record<string, unknown>>;
        data: Uint8Array;
        kind: Js;
    }
    Index
    attributes?: Readonly<Record<string, unknown>>
    data: Uint8Array
    kind: Js