@@ -11,6 +11,30 @@ import { RouteRef } from '@backstage/core-plugin-api';
|
||||
// @public (undocumented)
|
||||
export const GitHubIssuesCard: (props: GitHubIssuesProps) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export interface GithubIssuesFilters {
|
||||
// (undocumented)
|
||||
assignee?: string;
|
||||
// (undocumented)
|
||||
createdBy?: string;
|
||||
// (undocumented)
|
||||
labels?: string[];
|
||||
// (undocumented)
|
||||
mentioned?: string;
|
||||
// (undocumented)
|
||||
milestone?: string;
|
||||
// (undocumented)
|
||||
states?: ('OPEN' | 'CLOSED')[];
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export interface GithubIssuesOrdering {
|
||||
// (undocumented)
|
||||
direction?: 'ASC' | 'DESC';
|
||||
// (undocumented)
|
||||
field: 'CREATED_AT' | 'UPDATED_AT' | 'COMMENTS';
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export const GitHubIssuesPage: (props: GitHubIssuesProps) => JSX.Element;
|
||||
|
||||
@@ -27,40 +51,16 @@ export const gitHubIssuesPlugin: BackstagePlugin<
|
||||
export type GitHubIssuesProps = {
|
||||
itemsPerPage?: number;
|
||||
itemsPerRepo?: number;
|
||||
filterBy?: IssuesFilters;
|
||||
orderBy?: IssuesOrdering;
|
||||
filterBy?: GithubIssuesFilters;
|
||||
orderBy?: GithubIssuesOrdering;
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
export interface IssuesByRepoOptions {
|
||||
// (undocumented)
|
||||
filterBy?: IssuesFilters;
|
||||
filterBy?: GithubIssuesFilters;
|
||||
// (undocumented)
|
||||
orderBy?: IssuesOrdering;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export interface IssuesFilters {
|
||||
// (undocumented)
|
||||
assignee?: string;
|
||||
// (undocumented)
|
||||
createdBy?: string;
|
||||
// (undocumented)
|
||||
labels?: string[];
|
||||
// (undocumented)
|
||||
mentioned?: string;
|
||||
// (undocumented)
|
||||
milestone?: string;
|
||||
// (undocumented)
|
||||
states?: ('OPEN' | 'CLOSED')[];
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export interface IssuesOrdering {
|
||||
// (undocumented)
|
||||
direction?: 'ASC' | 'DESC';
|
||||
// (undocumented)
|
||||
field: 'CREATED_AT' | 'UPDATED_AT' | 'COMMENTS';
|
||||
orderBy?: GithubIssuesOrdering;
|
||||
}
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
Reference in New Issue
Block a user