This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when a customization is updated.
function onCustomizationUpdated(handler: function): void;
handler(event: CustomizationUpdatedEnvelope): void | Promise<void>
import { customizationsV3 } from "@wix/stores";
customizationsV3.onCustomizationUpdated((event) => {
// handle your event here
});