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

interface IComponent {
    loaded?(): Promise<void>;
}

Methods

Methods

  • Called when the component is initially loaded.

    Returns Promise<void>