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