From c2b40c9959a39ba542046ba6b9237a09ece94488 Mon Sep 17 00:00:00 2001 From: Tomas Dabasinskas Date: Thu, 9 Feb 2023 20:21:02 +0200 Subject: [PATCH] Add API report Signed-off-by: Tomas Dabasinskas --- plugins/puppetdb/api-report.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 plugins/puppetdb/api-report.md diff --git a/plugins/puppetdb/api-report.md b/plugins/puppetdb/api-report.md new file mode 100644 index 0000000000..78f88f8d7f --- /dev/null +++ b/plugins/puppetdb/api-report.md @@ -0,0 +1,28 @@ +## API Report File for "@backstage/plugin-puppetdb" + +> 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 { Entity } from '@backstage/catalog-model'; +import { RouteRef } from '@backstage/core-plugin-api'; + +// @public +export const isPuppetDbAvailable: (entity: Entity) => true; + +// @public +export const puppetdbPlugin: BackstagePlugin< + { + root: RouteRef; + }, + {}, + {} +>; + +// @public +export const PuppetDbTab: () => JSX.Element; + +// (No @packageDocumentation comment for this package) +```