From d9f3cbe0340b5abbab7d7cb3657ba94087fe50cc Mon Sep 17 00:00:00 2001 From: Fanny Gaudin Date: Mon, 11 Oct 2021 17:04:32 +0200 Subject: [PATCH] update api-report Signed-off-by: Fanny Gaudin --- plugins/api-docs/api-report.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/plugins/api-docs/api-report.md b/plugins/api-docs/api-report.md index 74a0dc07dd..de36857945 100644 --- a/plugins/api-docs/api-report.md +++ b/plugins/api-docs/api-report.md @@ -5,6 +5,7 @@ ```ts /// +import { Action } from '@material-table/core'; import { ApiEntity } from '@backstage/catalog-model'; import { ApiRef } from '@backstage/core-plugin-api'; import { BackstagePlugin } from '@backstage/core-plugin-api'; @@ -58,9 +59,20 @@ export { apiDocsPlugin as plugin }; export const ApiExplorerPage: ({ initiallySelectedFilter, columns, + actions, }: { initiallySelectedFilter?: UserListFilterKind | undefined; columns?: TableColumn[] | undefined; + actions?: + | ( + | Action + | { + action: (rowData: CatalogTableRow) => Action; + position: string; + } + | ((rowData: CatalogTableRow) => Action) + )[] + | undefined; }) => JSX.Element; // Warning: (ae-missing-release-tag) "ApiTypeTitle" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)