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
+7 -10
View File
@@ -4,6 +4,8 @@
```ts
/// <reference types="react" />
import { ApiRef } from '@backstage/core-plugin-api';
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { Config } from '@backstage/config';
@@ -46,12 +48,12 @@ export const EmbeddedRouter: (_props: Props) => JSX.Element;
// @public (undocumented)
export const EntityLastLighthouseAuditCard: ({ dense, variant, }: {
dense?: boolean | undefined;
variant?: InfoCardVariants| undefined;
variant?: InfoCardVariants | undefined;
}) => JSX.Element;
// @public (undocumented)
export const EntityLighthouseContent: (_props: {
entity?: Entity| undefined;
entity?: Entity | undefined;
}) => JSX.Element;
// @public (undocumented)
@@ -64,9 +66,7 @@ export class FetchError extends Error {
// @public (undocumented)
const isLighthouseAvailable: (entity: Entity) => boolean;
export { isLighthouseAvailable }
export { isLighthouseAvailable as isPluginApplicableToEntity }
// @public (undocumented)
@@ -124,13 +124,11 @@ export type LighthouseCategoryId = 'pwa' | 'seo' | 'performance' | 'accessibilit
export const LighthousePage: () => JSX.Element;
// @public (undocumented)
const lighthousePlugin: BackstagePlugin<{
root: RouteRef<undefined>;
entityContent: RouteRef<undefined>;
const lighthousePlugin: BackstagePlugin< {
root: RouteRef<undefined>;
entityContent: RouteRef<undefined>;
}, {}>;
export { lighthousePlugin }
export { lighthousePlugin as plugin }
// @public (undocumented)
@@ -180,7 +178,6 @@ export interface Website {
// @public (undocumented)
export type WebsiteListResponse = LASListResponse<Website>;
// (No @packageDocumentation comment for this package)
```