From 599e00b9884aa86f198ad4529bb908013b93d1d1 Mon Sep 17 00:00:00 2001 From: Dominik Pfaffenbauer Date: Mon, 9 Jan 2023 17:10:39 +0100 Subject: [PATCH] Add API Report Signed-off-by: Dominik Pfaffenbauer --- .../api-report.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 plugins/scaffolder-backend-module-sentry/api-report.md diff --git a/plugins/scaffolder-backend-module-sentry/api-report.md b/plugins/scaffolder-backend-module-sentry/api-report.md new file mode 100644 index 0000000000..a72e8a1524 --- /dev/null +++ b/plugins/scaffolder-backend-module-sentry/api-report.md @@ -0,0 +1,21 @@ +## API Report File for "@backstage/plugin-scaffolder-backend-module-sentry" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts +import { Config } from '@backstage/config'; +import { TemplateAction } from '@backstage/plugin-scaffolder-backend'; + +// @public +export function createSentryCreateProjectAction(options: { + config: Config; +}): TemplateAction<{ + organizationSlug: string; + teamSlug: string; + name: string; + slug: string; + authToken?: string | undefined; +}>; + +// (No @packageDocumentation comment for this package) +```