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
+7 -8
View File
@@ -4,6 +4,8 @@
```ts
/// <reference types="react" />
import { ApiRef } from '@backstage/core-plugin-api';
import { BackstagePalette } from '@backstage/theme';
import { BackstagePlugin } from '@backstage/core-plugin-api';
@@ -278,14 +280,12 @@ export type CostInsightsPalette = BackstagePalette & CostInsightsPaletteAddition
export type CostInsightsPaletteOptions = PaletteOptions & CostInsightsPaletteAdditions;
// @public (undocumented)
const costInsightsPlugin: BackstagePlugin<{
root: RouteRef<undefined>;
growthAlerts: RouteRef<undefined>;
unlabeledDataflowAlerts: RouteRef<undefined>;
const costInsightsPlugin: BackstagePlugin< {
root: RouteRef<undefined>;
growthAlerts: RouteRef<undefined>;
unlabeledDataflowAlerts: RouteRef<undefined>;
}, {}>;
export { costInsightsPlugin }
export { costInsightsPlugin as plugin }
// @public (undocumented)
@@ -393,7 +393,7 @@ export class ExampleCostInsightsClient implements CostInsightsApi {
getProjectDailyCost(project: string, intervals: string): Promise<Cost>;
// (undocumented)
getUserGroups(userId: string): Promise<Group[]>;
}
}
// @public (undocumented)
export type Group = {
@@ -615,7 +615,6 @@ export interface UnlabeledDataflowData {
unlabeledCost: number;
}
// (No @packageDocumentation comment for this package)
```