Generated after a successful Add Country, Remove Country, or Set Countries update action.

interface StoreCountriesChangedMessagePayload {
    addedCountries?: StoreCountry[];
    removedCountries?: StoreCountry[];
    type: "StoreCountriesChanged";
}

Properties

addedCountries?: StoreCountry[]

Countries added to the Store.

removedCountries?: StoreCountry[]

Countries removed from the Store.

type: "StoreCountriesChanged"

Generated using TypeDoc