diff --git a/packages/frontend-plugin-api/api-report.md b/packages/frontend-plugin-api/api-report.md index 7d1f44d995..6eb5a87109 100644 --- a/packages/frontend-plugin-api/api-report.md +++ b/packages/frontend-plugin-api/api-report.md @@ -749,7 +749,7 @@ export function createExternalRouteRef< export function createFrontendModule< TId extends string, TExtensions extends readonly ExtensionDefinition[] = [], ->(options: ModuleOptions): FrontendModule; +>(options: FrontendModuleOptions): FrontendModule; // @public (undocumented) export function createFrontendPlugin< @@ -1246,6 +1246,19 @@ export interface FrontendModule { readonly pluginId: string; } +// @public (undocumented) +export interface FrontendModuleOptions< + TPluginId extends string, + TExtensions extends readonly ExtensionDefinition[], +> { + // (undocumented) + extensions?: TExtensions; + // (undocumented) + featureFlags?: FeatureFlagConfig[]; + // (undocumented) + pluginId: TPluginId; +} + // @public (undocumented) export interface FrontendPlugin< TRoutes extends AnyRoutes = AnyRoutes, @@ -1340,19 +1353,6 @@ export { identityApiRef }; export { microsoftAuthApiRef }; -// @public (undocumented) -export interface ModuleOptions< - TPluginId extends string, - TExtensions extends readonly ExtensionDefinition[], -> { - // (undocumented) - extensions?: TExtensions; - // (undocumented) - featureFlags?: FeatureFlagConfig[]; - // (undocumented) - pluginId: TPluginId; -} - // @public export const NavItemBlueprint: ExtensionBlueprint<{ kind: 'nav-item';