Triggered when a product variant is changed.
function onProductVariantsChanged(handler: function): void;
handler(event: ProductVariantsChangedEnvelope): void | Promise<void>
import { products } from "@wix/stores";
products.onProductVariantsChanged((event) => {
// handle your event here
});