From 6c4744725623fb2007ad8d3a5bb859950b8aaf8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustaf=20R=C3=A4ntil=C3=A4?= Date: Fri, 14 Jan 2022 14:43:19 +0100 Subject: [PATCH] fix(cicd-statistics): Export missing component type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gustaf Räntilä --- plugins/cicd-statistics/api-report.md | 6 +++++- plugins/cicd-statistics/src/plugin.ts | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/cicd-statistics/api-report.md b/plugins/cicd-statistics/api-report.md index 400d8de1a6..f12ab166ab 100644 --- a/plugins/cicd-statistics/api-report.md +++ b/plugins/cicd-statistics/api-report.md @@ -102,12 +102,16 @@ export const cicdStatisticsPlugin: BackstagePlugin< {} >; -// Warning: (ae-forgotten-export) The symbol "EntityPageCicdCharts" needs to be exported by the entry point index.d.ts // Warning: (ae-missing-release-tag) "EntityCicdStatisticsContent" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented) export const EntityCicdStatisticsContent: EntityPageCicdCharts; +// Warning: (ae-missing-release-tag) "EntityPageCicdCharts" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export function EntityPageCicdCharts(): JSX.Element; + // Warning: (ae-missing-release-tag) "FetchBuildsOptions" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public diff --git a/plugins/cicd-statistics/src/plugin.ts b/plugins/cicd-statistics/src/plugin.ts index cd53ce53e5..ca9506475a 100644 --- a/plugins/cicd-statistics/src/plugin.ts +++ b/plugins/cicd-statistics/src/plugin.ts @@ -20,6 +20,8 @@ import { createRouteRef, } from '@backstage/core-plugin-api'; +export type { EntityPageCicdCharts } from './entity-page'; + const rootCatalogCicdStatsRouteRef = createRouteRef({ id: 'cicd-statistics', });