Triggered when an instance of your app is uninstalled from a Wix site.
function onAppInstanceRemoved(handler: function): void;
handler(event: AppInstanceRemovedEnvelope): void | Promise<void>
import { appInstances } from "@wix/app-management";
appInstances.onAppInstanceRemoved((event) => {
// handle your event here
});