Meldbase TypeScript API
    Preparing search index...

    Type Alias WireValue

    WireValue:
        | { t: "null" }
        | { t: "bool"; v: boolean }
        | { t: "number"; v: number }
        | { t: "int64"; v: string }
        | { t: "string"; v: string }
        | { t: "id"; v: string }
        | { t: "date"; v: string }
        | { t: "binary"; v: string }
        | { t: "array"; v: readonly WireValue[] }
        | { t: "object"; v: readonly (readonly [string, WireValue])[] }