A PropertyDiff describes the difference between a single property's old and new values.

interface PropertyDiff {
    diffKind: DiffKind;
    inputDiff: boolean;
}

Properties

Properties

diffKind: DiffKind

diffKind is the kind of difference.

inputDiff: boolean

inputDiff is true if this is a difference between old and new inputs rather than old state and new inputs.

Generated using TypeDoc