feat: api report added

Signed-off-by: Kamil Wolny <mrwolny@gmail.com>
This commit is contained in:
Kamil Wolny
2022-07-29 14:51:32 +01:00
parent 655149ec0d
commit f9445b8d7b
2 changed files with 37 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
## API Report File for "@backstage/plugin-github-issues"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
/// <reference types="react" />
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { FunctionComponent } from 'react';
import { RouteRef } from '@backstage/core-plugin-api';
// @public (undocumented)
export const GitHubIssuesCard: FunctionComponent<{
itemsPerPage?: number | undefined;
itemsPerRepo?: number | undefined;
}>;
// @public (undocumented)
export const GitHubIssuesPage: FunctionComponent<{
itemsPerPage?: number | undefined;
itemsPerRepo?: number | undefined;
}>;
// @public (undocumented)
export const gitHubIssuesPlugin: BackstagePlugin<
{
root: RouteRef<undefined>;
},
{},
{}
>;
// (No @packageDocumentation comment for this package)
```
+3
View File
@@ -21,6 +21,7 @@ import {
import { rootRouteRef } from './routes';
/** @public */
export const gitHubIssuesPlugin = createPlugin({
id: 'github-issues',
routes: {
@@ -28,6 +29,7 @@ export const gitHubIssuesPlugin = createPlugin({
},
});
/** @public */
export const GitHubIssuesCard = gitHubIssuesPlugin.provide(
createComponentExtension({
name: 'GitHubIssuesCard',
@@ -38,6 +40,7 @@ export const GitHubIssuesCard = gitHubIssuesPlugin.provide(
}),
);
/** @public */
export const GitHubIssuesPage = gitHubIssuesPlugin.provide(
createRoutableExtension({
name: 'GitHubIssuesPage',