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 { Entity } from '@backstage/catalog-model';
@@ -100,28 +102,26 @@ export class CloudbuildClient implements CloudbuildApi {
}
// @public (undocumented)
const cloudbuildPlugin: BackstagePlugin<{
entityContent: RouteRef<undefined>;
const cloudbuildPlugin: BackstagePlugin< {
entityContent: RouteRef<undefined>;
}, {}>;
export { cloudbuildPlugin }
export { cloudbuildPlugin as plugin }
// @public (undocumented)
export const EntityCloudbuildContent: (_props: {
entity?: Entity| undefined;
entity?: Entity | undefined;
}) => JSX.Element;
// @public (undocumented)
export const EntityLatestCloudbuildRunCard: ({ branch, }: {
entity?: Entity| undefined;
entity?: Entity | undefined;
branch: string;
}) => JSX.Element;
// @public (undocumented)
export const EntityLatestCloudbuildsForBranchCard: ({ branch, }: {
entity?: Entity| undefined;
entity?: Entity | undefined;
branch: string;
}) => JSX.Element;
@@ -135,9 +135,7 @@ export interface FETCHSOURCE {
// @public (undocumented)
const isCloudbuildAvailable: (entity: Entity) => boolean;
export { isCloudbuildAvailable }
export { isCloudbuildAvailable as isPluginApplicableToEntity }
// @public (undocumented)
@@ -277,7 +275,6 @@ export interface Volume {
path: string;
}
// (No @packageDocumentation comment for this package)
```