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
qValue?: string