chore: updating the api-docs as some PR's were merged after the api-docs PR merge that were not rebuilt

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-06-17 19:19:42 +02:00
parent ae501c04df
commit 90bd5ab9e7
3 changed files with 54 additions and 3 deletions
+28 -1
View File
@@ -5,8 +5,10 @@
```ts
import { BackstagePlugin } from '@backstage/core';
import { default } from 'react';
import { ExternalRouteRef } from '@backstage/core';
import { RouteRef } from '@backstage/core';
import { TabProps } from '@material-ui/core';
// @public (undocumented)
export const catalogEntityRouteRef: ExternalRouteRef<{
@@ -15,11 +17,22 @@ export const catalogEntityRouteRef: ExternalRouteRef<{
namespace: string;
}, false>;
// @public (undocumented)
export const DomainExplorerContent: ({ title, }: {
title?: string | undefined;
}) => JSX.Element;
// @public
export const ExploreLayout: {
({ title, subtitle, children, }: ExploreLayoutProps): JSX.Element;
Route: (props: SubRoute) => null;
};
// @public (undocumented)
export const ExplorePage: () => JSX.Element;
// @public (undocumented)
export const explorePlugin: BackstagePlugin<{
const explorePlugin: BackstagePlugin<{
explore: RouteRef<undefined>;
}, {
catalogEntity: ExternalRouteRef<{
@@ -29,9 +42,23 @@ export const explorePlugin: BackstagePlugin<{
}, false>;
}>;
export { explorePlugin }
export { explorePlugin as plugin }
// @public (undocumented)
export const exploreRouteRef: RouteRef<undefined>;
// @public (undocumented)
export const GroupsExplorerContent: ({ title, }: {
title?: string | undefined;
}) => JSX.Element;
// @public (undocumented)
export const ToolExplorerContent: ({ title }: {
title?: string | undefined;
}) => JSX.Element;
// (No @packageDocumentation comment for this package)