Change triggered by the Set Transitions update action.

interface SetTransitionsChange {
    change: string;
    nextValue: Reference[];
    previousValue: Reference[];
    type: "SetTransitionsChange";
}

Properties

change: string
nextValue: Reference[]

Value after the change.

previousValue: Reference[]

Value before the change.

type: "SetTransitionsChange"