Interface containing supported life-cycle functions for ESModule entry points

interface UmbEntryPointModule {
    onInit: UmbEntryPointOnInit;
    onUnload: UmbEntryPointOnUnload;
}

Properties

Properties

Function that will be called when the host element is initialized and/or the extension is loaded for the first time.

Function that will be called when the extension is unregistered.

This does not mean the host element is destroyed, only that the extension is no longer available. You should listen to the host element's destroy event if you need to clean up after the host element.

MMNEPVFCICPMFPCPTTAAATR