From a357c354afc1d99b476ecff69e472fd0f3f76cad Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 12 Apr 2022 13:07:58 +0200 Subject: [PATCH] Do not use @alpha type in @public export Signed-off-by: Eric Peterson --- plugins/techdocs-react/api-report.md | 2 +- plugins/techdocs-react/src/context.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/techdocs-react/api-report.md b/plugins/techdocs-react/api-report.md index 66ad397412..f9566e6f9b 100644 --- a/plugins/techdocs-react/api-report.md +++ b/plugins/techdocs-react/api-report.md @@ -66,7 +66,7 @@ export const TechDocsReaderPageContext: Context< | undefined >; -// @alpha +// @public export type TechDocsReaderPageValue = { metadata: AsyncState; entityName: CompoundEntityRef; diff --git a/plugins/techdocs-react/src/context.tsx b/plugins/techdocs-react/src/context.tsx index 39774de1e9..9348855f39 100644 --- a/plugins/techdocs-react/src/context.tsx +++ b/plugins/techdocs-react/src/context.tsx @@ -23,7 +23,7 @@ import { createVersionedContext } from '@backstage/version-bridge'; import { TechDocsEntityMetadata, TechDocsMetadata } from './types'; /** - * @alpha type for the value of the TechDocsReaderPageContext + * @public type for the value of the TechDocsReaderPageContext */ export type TechDocsReaderPageValue = { metadata: AsyncState;