From 10ce9d162c5f6c8d2cdedcfc0631e460bcb974ec Mon Sep 17 00:00:00 2001 From: Jenah Blitz Date: Thu, 26 Jan 2023 15:59:30 -0500 Subject: [PATCH] generate api-report Signed-off-by: Jenah Blitz --- plugins/airbrake/api-report.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/airbrake/api-report.md b/plugins/airbrake/api-report.md index e48fbf9cde..773e2a029a 100644 --- a/plugins/airbrake/api-report.md +++ b/plugins/airbrake/api-report.md @@ -6,6 +6,7 @@ /// import { BackstagePlugin } from '@backstage/core-plugin-api'; +import { Entity } from '@backstage/catalog-model'; import { RouteRef } from '@backstage/core-plugin-api'; // @public @@ -19,4 +20,7 @@ export const airbrakePlugin: BackstagePlugin< // @public export const EntityAirbrakeContent: () => JSX.Element; + +// @public +export const isAirbrakeAvailable: (entity: Entity) => boolean; ```