Remove trivial deps

Signed-off-by: Ilya Savich <isavich@box.com>
This commit is contained in:
Ilya Savich
2025-12-05 11:13:10 +01:00
parent 26845863b9
commit 7c6530b036
3 changed files with 1 additions and 18 deletions
+1 -9
View File
@@ -13,10 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
createExtensionPoint,
HttpAuthService,
} from '@backstage/backend-plugin-api';
import { createExtensionPoint } from '@backstage/backend-plugin-api';
import {
AuthenticationStrategy,
CustomResource,
@@ -27,8 +24,6 @@ import {
KubernetesServiceLocator,
} from '@backstage/plugin-kubernetes-node';
import type express from 'express';
import type { CatalogService } from '@backstage/plugin-catalog-node';
import type { PermissionEvaluator } from '@backstage/plugin-permission-common';
/**
* A factory function for creating a KubernetesObjectsProvider.
@@ -185,9 +180,6 @@ export type KubernetesRouterFactory = (opts: {
getDefault: () => express.Router;
objectsProvider: KubernetesObjectsProvider;
clusterSupplier: KubernetesClustersSupplier;
catalog: CatalogService;
permissions: PermissionEvaluator;
httpAuth: HttpAuthService;
authStrategyMap: { [key: string]: AuthenticationStrategy };
}) => express.Router;