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