core-app-api: update api-report

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-06-10 10:02:57 +02:00
parent 9bca2a252b
commit dd5f5979eb
+8 -2
View File
@@ -42,6 +42,7 @@ import { oktaAuthApiRef } from '@backstage/core-plugin-api';
import { oneloginAuthApiRef } from '@backstage/core-plugin-api';
import { OpenIdConnectApi } from '@backstage/core-plugin-api';
import { PendingAuthRequest } from '@backstage/core-plugin-api';
import { PluginOutput } from '@backstage/core-plugin-api';
import { ProfileInfo } from '@backstage/core-plugin-api';
import { ProfileInfoApi } from '@backstage/core-plugin-api';
import { PropsWithChildren } from 'react';
@@ -137,10 +138,10 @@ export type AppContext = {
// @public (undocumented)
export type AppOptions = {
apis?: Iterable<AnyApiFactory>;
icons?: AppIcons & {
icons?: Partial<AppIcons> & {
[key in string]: IconComponent;
};
plugins?: BackstagePlugin<any, any>[];
plugins?: BackstagePluginWithAnyOutput[];
components?: Partial<AppComponents>;
themes?: AppTheme[];
configLoader?: AppConfigLoader;
@@ -183,6 +184,11 @@ export type BackstageApp = {
getRouter(): ComponentType<{}>;
};
// @public (undocumented)
export type BackstagePluginWithAnyOutput = Omit<BackstagePlugin<any, any>, 'output'> & {
output(): (PluginOutput | UnknownPluginOutput)[];
};
// @public (undocumented)
export type BootErrorPageProps = {
step: 'load-config' | 'load-chunk';