typescript-sdk

Home > @3rdweb/sdk > JSONValue

JSONValue type

A JSON value

Signature:

export declare type JSONValue = string | number | null | boolean | JSONValue[] | {
    [key: string]: JSONValue;
};

References: JSONValue