IGPAPI
    Preparing search index...

    Interface BloksResponse

    Response envelope returned by Bloks-aware HTTP services.

    body is the raw UTF-8 response body as a string — kept unparsed because the only remaining use case is substring containment checks (error markers, throttle messages). For structured access use dicts/literals, which come from the opcode-agnostic Rust extractor.

    All four properties are lazy getters — reading body doesn't decode the extract and vice versa, so consumers pay only for what they touch.

    interface BloksResponse {
        ast: readonly Bloks.BloksAstNode[];
        body: string;
        dicts: readonly Bloks.BloksDict[];
        literals: readonly Bloks.BloksLiteral[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    ast: readonly Bloks.BloksAstNode[]
    body: string
    dicts: readonly Bloks.BloksDict[]
    literals: readonly Bloks.BloksLiteral[]