fix: Remove unused type in @backstage/kubernetes-common

Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
Carlos Esteban Lopez
2022-11-01 14:39:58 -05:00
committed by Fredrik Adelöw
parent 9fb0d696b8
commit b372602d8c
3 changed files with 2 additions and 13 deletions
@@ -17,6 +17,8 @@ import 'buffer';
import { getVoidLogger } from '@backstage/backend-common';
import { setupRequestMockHandlers } from '@backstage/backend-test-utils';
import { NotFoundError } from '@backstage/errors';
import { getMockReq, getMockRes } from '@jest-mock/express';
import { Request } from 'express';
import { rest } from 'msw';
import { setupServer } from 'msw/node';
@@ -27,8 +29,6 @@ import {
HEADER_KUBERNETES_CLUSTER,
KubernetesProxy,
} from './KubernetesProxy';
import { NotFoundError } from '@backstage/errors';
import { getMockReq, getMockRes } from '@jest-mock/express';
describe('KubernetesProxy', () => {
let proxy: KubernetesProxy;
-6
View File
@@ -193,12 +193,6 @@ export interface KubernetesFetchError {
statusCode?: number;
}
// @public (undocumented)
export interface KubernetesProxyClusters {
// (undocumented)
[key: string]: string;
}
// @public (undocumented)
export interface KubernetesRequestAuth {
// (undocumented)
-5
View File
@@ -258,8 +258,3 @@ export interface ClientPodStatus {
memory: ClientCurrentResourceUsage;
containers: ClientContainerStatus[];
}
/** @public */
export interface KubernetesProxyClusters {
[key: string]: string;
}