12 lines
430 B
TypeScript
12 lines
430 B
TypeScript
import type { UmbExtensionRegistry } from './registry/extension.registry';
|
|
import type { UmbControllerHostInterface } from '@umbraco-cms/controller';
|
|
|
|
export type UmbEntrypointOnInit = (host: UmbControllerHostInterface, extensionRegistry: UmbExtensionRegistry) => void;
|
|
|
|
/**
|
|
* Interface containing supported life-cycle functions for ESModule entrypoints
|
|
*/
|
|
export interface UmbEntrypointModule {
|
|
onInit: UmbEntrypointOnInit;
|
|
}
|