diff --git a/plugins/catalog/alpha-api-report.md b/plugins/catalog/alpha-api-report.md index 060baeccbf..e89807ac34 100644 --- a/plugins/catalog/alpha-api-report.md +++ b/plugins/catalog/alpha-api-report.md @@ -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;