Change triggered by the Set Stores update action.

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

Properties

change: string
nextValue: Reference[]

Value after the change.

previousValue: Reference[]

Value before the change.

type: "SetStoresChange"