recreate all api-reports with latest version of api-extractor

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-07-11 16:38:26 +02:00
parent 9f4d05eb92
commit 8ae3cffb85
44 changed files with 228 additions and 263 deletions
+6 -9
View File
@@ -4,6 +4,8 @@
```ts
/// <reference types="react" />
import { ApiRef } from '@backstage/core-plugin-api';
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { DiscoveryApi } from '@backstage/core-plugin-api';
@@ -16,14 +18,12 @@ export const EntityPageRollbar: (_props: Props) => JSX.Element;
// @public (undocumented)
export const EntityRollbarContent: (_props: {
entity?: Entity| undefined;
entity?: Entity | undefined;
}) => JSX.Element;
// @public (undocumented)
const isPluginApplicableToEntity: (entity: Entity) => boolean;
export { isPluginApplicableToEntity }
export { isPluginApplicableToEntity as isRollbarAvailable }
// @public (undocumented)
@@ -58,21 +58,18 @@ export class RollbarClient implements RollbarApi {
getProjectItems(project: string): Promise<RollbarItemsResponse>;
// (undocumented)
getTopActiveItems(project: string, hours?: number, environment?: string): Promise<RollbarTopActiveItem[]>;
}
}
// @public (undocumented)
const rollbarPlugin: BackstagePlugin<{
entityContent: RouteRef<undefined>;
const rollbarPlugin: BackstagePlugin< {
entityContent: RouteRef<undefined>;
}, {}>;
export { rollbarPlugin as plugin }
export { rollbarPlugin }
// @public (undocumented)
export const Router: (_props: Props_2) => JSX.Element;
// (No @packageDocumentation comment for this package)
```