@mendix/extensions-api - v0.2.4
    Preparing search index...

    Interface IComponent

    Interface that a component should implement, so its lifecycle method can be called by the framework.

    interface IComponent {
        loaded(componentContext: ComponentContext): Promise<void>;
    }
    Index

    Methods

    Methods

    • Called when the component is initially loaded.

      Parameters

      • componentContext: ComponentContext

        Object that uniquely identifies the component that is being loaded.

      Returns Promise<void>