recreate all api-reports with latest version of api-extractor

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-07-11 16:38:26 +02:00
parent 9f4d05eb92
commit 8ae3cffb85
44 changed files with 228 additions and 263 deletions
+13 -14
View File
@@ -4,6 +4,8 @@
```ts
/// <reference types="react" />
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { default } from 'react';
import { ExternalRouteRef } from '@backstage/core-plugin-api';
@@ -11,10 +13,10 @@ import { RouteRef } from '@backstage/core-plugin-api';
import { TabProps } from '@material-ui/core';
// @public (undocumented)
export const catalogEntityRouteRef: ExternalRouteRef<{
name: string;
kind: string;
namespace: string;
export const catalogEntityRouteRef: ExternalRouteRef< {
name: string;
kind: string;
namespace: string;
}, false>;
// @public (undocumented)
@@ -32,18 +34,16 @@ export const ExploreLayout: {
export const ExplorePage: () => JSX.Element;
// @public (undocumented)
const explorePlugin: BackstagePlugin<{
explore: RouteRef<undefined>;
const explorePlugin: BackstagePlugin< {
explore: RouteRef<undefined>;
}, {
catalogEntity: ExternalRouteRef<{
name: string;
kind: string;
namespace: string;
}, false>;
catalogEntity: ExternalRouteRef< {
name: string;
kind: string;
namespace: string;
}, false>;
}>;
export { explorePlugin }
export { explorePlugin as plugin }
// @public (undocumented)
@@ -59,7 +59,6 @@ export const ToolExplorerContent: ({ title }: {
title?: string | undefined;
}) => JSX.Element;
// (No @packageDocumentation comment for this package)
```