interface UmbDebugContextData {
    alias: string;
    data: UmbDebugContextItemData;
    type:
        | "string"
        | "number"
        | "bigint"
        | "boolean"
        | "symbol"
        | "undefined"
        | "object"
        | "function";
}

Properties

Properties

alias: string

The alias of the context

UmbDebugContextData

Data about the context that includes method and property names

UmbDebugContextData

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

The type of the context such as object or string

UmbDebugContextData

""