From c24c29fdba198b3df334624ffc6602f801ec1c2f Mon Sep 17 00:00:00 2001 From: Niklas Granander Date: Wed, 14 Jul 2021 10:03:55 +0200 Subject: [PATCH] Update API report to new format Signed-off-by: Niklas Granander --- plugins/xcmetrics/api-report.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/xcmetrics/api-report.md b/plugins/xcmetrics/api-report.md index 6149962c8a..3509fec523 100644 --- a/plugins/xcmetrics/api-report.md +++ b/plugins/xcmetrics/api-report.md @@ -3,6 +3,7 @@ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). ```ts +/// import { BackstagePlugin } from '@backstage/core-plugin-api'; import { RouteRef } from '@backstage/core-plugin-api'; @@ -11,11 +12,12 @@ import { RouteRef } from '@backstage/core-plugin-api'; export const XcmetricsPage: () => JSX.Element; // @public (undocumented) -export const xcmetricsPlugin: BackstagePlugin<{ +export const xcmetricsPlugin: BackstagePlugin< + { root: RouteRef; -}, {}>; - + }, + {} +>; // (No @packageDocumentation comment for this package) - ```