api reports

Signed-off-by: Tomasz Szuba <tszuba@box.com>
This commit is contained in:
Tomasz Szuba
2023-12-13 17:59:58 +01:00
parent d5d2c67ca8
commit bf8cb6bba1
+5 -4
View File
@@ -29,6 +29,7 @@ import { ObjectsByEntityResponse } from '@backstage/plugin-kubernetes-common';
import { OpenIdConnectApi } from '@backstage/core-plugin-api';
import { Pod } from 'kubernetes-models/v1';
import { Pod as Pod_2 } from 'kubernetes-models/v1/Pod';
import { ProfileInfoApi } from '@backstage/core-plugin-api';
import { default as React_2 } from 'react';
import * as React_3 from 'react';
import { TypeMeta } from '@kubernetes-models/base';
@@ -251,13 +252,13 @@ export type FormatClusterLinkOptions = {
};
// @public (undocumented)
export function getDefaultFormatters(_deps: {}): Record<
string,
ClusterLinksFormatter
>;
export function getDefaultFormatters(deps: {
googleAuthApi: ProfileInfoApi;
}): Record<string, ClusterLinksFormatter>;
// @public (undocumented)
export class GkeClusterLinksFormatter implements ClusterLinksFormatter {
constructor(googleAuthApi: ProfileInfoApi | undefined);
// (undocumented)
formatClusterLink(options: ClusterLinksFormatterOptions): Promise<URL>;
}