fix(cicd-statistics): Export missing component type

Signed-off-by: Gustaf Räntilä <g.rantila@gmail.com>
This commit is contained in:
Gustaf Räntilä
2022-01-14 14:43:19 +01:00
committed by blam
parent 721dca4a14
commit 6c47447256
2 changed files with 7 additions and 1 deletions
+5 -1
View File
@@ -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
+2
View File
@@ -20,6 +20,8 @@ import {
createRouteRef,
} from '@backstage/core-plugin-api';
export type { EntityPageCicdCharts } from './entity-page';
const rootCatalogCicdStatsRouteRef = createRouteRef({
id: 'cicd-statistics',
});