From 24ed8c02373f65abcf54ab24d449497a879c51ba Mon Sep 17 00:00:00 2001 From: irma12 Date: Mon, 10 Jan 2022 15:03:07 +0100 Subject: [PATCH] Added api report Signed-off-by: irma12 --- plugins/tech-insights/api-report.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/plugins/tech-insights/api-report.md b/plugins/tech-insights/api-report.md index 1849508f63..52712b14a4 100644 --- a/plugins/tech-insights/api-report.md +++ b/plugins/tech-insights/api-report.md @@ -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;