docs(catalog): update api reports

Signed-off-by: Camila Belo <camilaibs@gmail.com>
This commit is contained in:
Camila Belo
2023-09-29 08:48:51 +02:00
parent a285d5b639
commit 24bdbd035e
+3 -8
View File
@@ -5,19 +5,14 @@
```ts
import { BackstagePlugin } from '@backstage/frontend-plugin-api';
import { Extension } from '@backstage/frontend-plugin-api';
import { TranslationRef } from '@backstage/core-plugin-api/alpha';
// @alpha (undocumented)
export const CatalogApi: Extension<{}>;
// @alpha (undocumented)
export const catalogTranslationRef: TranslationRef<
'catalog',
{
readonly catalog_page_title: '{{orgName}} Catalog';
readonly catalog_page_create_button_title: 'Create';
}
>;
export const CatalogSearchResultListItemExtension: Extension<{
noTrack?: boolean | undefined;
}>;
// @alpha (undocumented)
const _default: BackstagePlugin;