diff --git a/plugins/adr/alpha-api-report.md b/plugins/adr/alpha-api-report.md index 1d2b3f313d..7ce9f6f055 100644 --- a/plugins/adr/alpha-api-report.md +++ b/plugins/adr/alpha-api-report.md @@ -6,11 +6,14 @@ import { TranslationRef } from '@backstage/core-plugin-api/alpha'; // @alpha (undocumented) -export const adrTranslationRef: TranslationRef<{ - readonly content_header_title: 'Architecture Decision Records'; - readonly failed_to_fetch: 'Failed to fetch ADRs'; - readonly no_adrs: 'No ADRs found'; -}>; +export const adrTranslationRef: TranslationRef< + 'adr', + { + readonly content_header_title: 'Architecture Decision Records'; + readonly failed_to_fetch: 'Failed to fetch ADRs'; + readonly no_adrs: 'No ADRs found'; + } +>; // (No @packageDocumentation comment for this package) ```