interface IComponent { loaded?(context: Readonly<{ componentId: string; entryPointId: string; }>): Promise<void>; } Methods
Optional
loaded
- loaded(context): Promise<void>
Parameters
- context: Readonly<{
componentId: string;
entryPointId: string;
}>
Returns Promise<void>
Interface that a component should implement, so its lifecycle method can be called by the framework.