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
+9 -12
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 { ConfigApi } from '@backstage/core-plugin-api';
@@ -27,21 +29,21 @@ export enum BuildStatus {
// @public (undocumented)
export const EntityGithubActionsContent: (_props: {
entity?: Entity| undefined;
entity?: Entity | undefined;
}) => JSX.Element;
// @public (undocumented)
export const EntityLatestGithubActionRunCard: ({ branch, variant, }: {
entity?: Entity| undefined;
entity?: Entity | undefined;
branch: string;
variant?: InfoCardVariants| undefined;
variant?: InfoCardVariants | undefined;
}) => JSX.Element;
// @public (undocumented)
export const EntityLatestGithubActionsForBranchCard: ({ branch, variant, }: {
entity?: Entity| undefined;
entity?: Entity | undefined;
branch: string;
variant?: InfoCardVariants| undefined;
variant?: InfoCardVariants | undefined;
}) => JSX.Element;
// @public (undocumented)
@@ -152,19 +154,15 @@ export class GithubActionsClient implements GithubActionsApi {
}
// @public (undocumented)
const githubActionsPlugin: BackstagePlugin<{
entityContent: RouteRef<undefined>;
const githubActionsPlugin: BackstagePlugin< {
entityContent: RouteRef<undefined>;
}, {}>;
export { githubActionsPlugin }
export { githubActionsPlugin as plugin }
// @public (undocumented)
const isGithubActionsAvailable: (entity: Entity) => boolean;
export { isGithubActionsAvailable }
export { isGithubActionsAvailable as isPluginApplicableToEntity }
// @public (undocumented)
@@ -207,7 +205,6 @@ export type Step = {
completed_at: string;
};
// (No @packageDocumentation comment for this package)
```