interface UmbDebugContextItemPropertyData {
    key: string;
    type:
        | "string"
        | "number"
        | "bigint"
        | "boolean"
        | "symbol"
        | "undefined"
        | "object"
        | "function";
    value?: unknown;
}

Properties

Properties

key: string

The name of the property

UmbDebugContextItemPropertyData

type:
    | "string"
    | "number"
    | "bigint"
    | "boolean"
    | "symbol"
    | "undefined"
    | "object"
    | "function"

The type of the property's value such as string or number

UmbDebugContextItemPropertyData

value?: unknown

Simple types such as string or number can have their value displayed stored inside the property

UmbDebugContextItemPropertyData

MMNEPVFCICPMFPCPTTAAATR