@@ -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)
|
||||
```
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user