feat: updated api-report.md

Signed-off-by: Kamil Wolny <mrwolny@gmail.com>
This commit is contained in:
Kamil Wolny
2022-08-02 08:57:29 +01:00
parent 6c5bec2362
commit d51e5223d6
+10 -9
View File
@@ -6,20 +6,21 @@
/// <reference types="react" />
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { FunctionComponent } from 'react';
import { RouteRef } from '@backstage/core-plugin-api';
// Warning: (ae-forgotten-export) The symbol "GitHubIssuesProps" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export const GitHubIssuesCard: FunctionComponent<{
itemsPerPage?: number | undefined;
itemsPerRepo?: number | undefined;
}>;
export const GitHubIssuesCard: ({
itemsPerPage,
itemsPerRepo,
}: GitHubIssuesProps) => JSX.Element;
// @public (undocumented)
export const GitHubIssuesPage: FunctionComponent<{
itemsPerPage?: number | undefined;
itemsPerRepo?: number | undefined;
}>;
export const GitHubIssuesPage: ({
itemsPerPage,
itemsPerRepo,
}: GitHubIssuesProps) => JSX.Element;
// @public (undocumented)
export const gitHubIssuesPlugin: BackstagePlugin<