From 0811fcee4056a59cf5c3ba19b6f9545a839e42e2 Mon Sep 17 00:00:00 2001 From: Vincenzo Scamporlino Date: Wed, 19 Jul 2023 14:38:58 +0200 Subject: [PATCH] autodetect: add missing api-report Signed-off-by: Vincenzo Scamporlino --- packages/autodetect/api-report.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 packages/autodetect/api-report.md diff --git a/packages/autodetect/api-report.md b/packages/autodetect/api-report.md new file mode 100644 index 0000000000..034dd3e8f0 --- /dev/null +++ b/packages/autodetect/api-report.md @@ -0,0 +1,19 @@ +## API Report File for "@backstage/autodetect" + +> 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'; + +// @public (undocumented) +export type DetectedPlugin = { + name: string; + plugin: BackstagePlugin; + components: Record; +}; + +// @public (undocumented) +export function getAvailablePlugins(): DetectedPlugin[]; + +// (No @packageDocumentation comment for this package) +```