correct generated PagerDuty API report

Signed-off-by: Mike Ball <mikedball@gmail.com>
This commit is contained in:
Mike Ball
2023-02-02 13:55:13 -05:00
parent 3a0cf26a4a
commit 960cbbc5d0
2 changed files with 7 additions and 2 deletions
+5 -2
View File
@@ -13,8 +13,6 @@ import { Entity } from '@backstage/catalog-model';
import { FetchApi } from '@backstage/core-plugin-api';
import { ReactNode } from 'react';
// Warning: (ae-forgotten-export) The symbol "PagerDutyCardProps" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export const EntityPagerDutyCard: (props: PagerDutyCardProps) => JSX.Element;
@@ -49,6 +47,11 @@ export type PagerDutyAssignee = {
// @public (undocumented)
export const PagerDutyCard: (props: PagerDutyCardProps) => JSX.Element;
// @public (undocumented)
export type PagerDutyCardProps = {
readOnly?: boolean;
};
// @public (undocumented)
export type PagerDutyChangeEvent = {
id: string;
@@ -23,6 +23,8 @@ export type {
PagerDutyUser,
} from './types';
export type { PagerDutyCardProps } from './PagerDutyCard';
export {
isPluginApplicableToEntity,
isPluginApplicableToEntity as isPagerDutyAvailable,