Added api report

Signed-off-by: irma12 <irma@roadie.io>
This commit is contained in:
irma12
2022-01-10 15:03:07 +01:00
parent ef6c1a13b2
commit 24ed8c0237
+9 -1
View File
@@ -30,7 +30,13 @@ export type CheckResultRenderer = {
};
// @public (undocumented)
export const EntityTechInsightsScorecardContent: () => JSX.Element;
export const EntityTechInsightsScorecardContent: ({
title,
description,
}: {
title?: string | undefined;
description?: string | undefined;
}) => JSX.Element;
// @public
export interface TechInsightsApi {
@@ -40,6 +46,8 @@ export interface TechInsightsApi {
getScorecardsDefinition: (
type: string,
value: CheckResult[],
title?: string,
description?: string,
) => CheckResultRenderer | undefined;
// (undocumented)
runChecks(entityParams: EntityName, checks?: Check[]): Promise<CheckResult[]>;