From ddfdba32756d271995e9745687607d173fed5168 Mon Sep 17 00:00:00 2001 From: Tomas Dabasinskas Date: Wed, 5 Apr 2023 09:10:32 +0300 Subject: [PATCH] Add API report Signed-off-by: Tomas Dabasinskas --- plugins/puppetdb/api-report.md | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/plugins/puppetdb/api-report.md b/plugins/puppetdb/api-report.md index 78f88f8d7f..f5ea82c28a 100644 --- a/plugins/puppetdb/api-report.md +++ b/plugins/puppetdb/api-report.md @@ -7,22 +7,31 @@ import { BackstagePlugin } from '@backstage/core-plugin-api'; import { Entity } from '@backstage/catalog-model'; +import { PathParams } from '@backstage/core-plugin-api'; import { RouteRef } from '@backstage/core-plugin-api'; +import { SubRouteRef } from '@backstage/core-plugin-api'; // @public -export const isPuppetDbAvailable: (entity: Entity) => true; +const isPuppetDbAvailable: (entity: Entity) => boolean; +export { isPuppetDbAvailable as isPluginApplicableToEntity }; +export { isPuppetDbAvailable }; // @public -export const puppetdbPlugin: BackstagePlugin< - { - root: RouteRef; - }, - {}, - {} ->; +export const PuppetDbPage: () => JSX.Element; // @public -export const PuppetDbTab: () => JSX.Element; +const puppetdbPlugin: BackstagePlugin<{}, {}, {}>; +export { puppetdbPlugin as plugin }; +export { puppetdbPlugin }; + +// @public (undocumented) +export const puppetDbReportRouteRef: SubRouteRef>; + +// @public (undocumented) +export const puppetDbRouteRef: RouteRef; + +// @public (undocumented) +export const Router: () => JSX.Element; // (No @packageDocumentation comment for this package) ```