Type Alias NxPatch

Patches to apply to sense charts. Patches are soft properties meaning that are not persistent and they live within a session.

type NxPatch = {
    qOp: "add" | "remove" | "replace";
    qPath: string;
    qValue?: string;
}
Index

Properties

Properties

qOp: "add" | "remove" | "replace"
qPath: string

Path to the property to add, remove or replace.

qValue?: string

Corresponds to the value of the property to add or to the new value of the property to update.