chore: api-reports

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-08-28 10:06:05 +02:00
parent f1e08f7dd8
commit 3530a64deb
+14 -14
View File
@@ -749,7 +749,7 @@ export function createExternalRouteRef<
export function createFrontendModule<
TId extends string,
TExtensions extends readonly ExtensionDefinition[] = [],
>(options: ModuleOptions<TId, TExtensions>): FrontendModule;
>(options: FrontendModuleOptions<TId, TExtensions>): 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';