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
+6 -9
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 { DiscoveryApi } from '@backstage/core-plugin-api';
@@ -13,20 +15,18 @@ import { RouteRef } from '@backstage/core-plugin-api';
// @public (undocumented)
export const EntityJenkinsContent: (_props: {
entity?: Entity| undefined;
entity?: Entity | undefined;
}) => JSX.Element;
// @public (undocumented)
export const EntityLatestJenkinsRunCard: ({ branch, variant, }: {
branch: string;
variant?: InfoCardVariants| undefined;
variant?: InfoCardVariants | undefined;
}) => JSX.Element;
// @public (undocumented)
const isJenkinsAvailable: (entity: Entity) => boolean;
export { isJenkinsAvailable }
export { isJenkinsAvailable as isPluginApplicableToEntity }
// @public (undocumented)
@@ -60,12 +60,10 @@ export class JenkinsApi {
export const jenkinsApiRef: ApiRef<JenkinsApi>;
// @public (undocumented)
const jenkinsPlugin: BackstagePlugin<{
entityContent: RouteRef<undefined>;
const jenkinsPlugin: BackstagePlugin< {
entityContent: RouteRef<undefined>;
}, {}>;
export { jenkinsPlugin }
export { jenkinsPlugin as plugin }
// @public (undocumented)
@@ -77,7 +75,6 @@ export const LatestRunCard: ({ branch, variant, }: {
// @public (undocumented)
export const Router: (_props: Props) => JSX.Element;
// (No @packageDocumentation comment for this package)
```