From 8532a88cf812dafd4df8d8d7c590c3335f873539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Str=C3=BCbing?= Date: Mon, 6 Jan 2025 10:26:02 +0000 Subject: [PATCH] feat: export `ApiConstructor`-type --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index a3c1603e91..f241e137ea 100644 --- a/src/config.ts +++ b/src/config.ts @@ -595,7 +595,7 @@ export class KubeConfig implements SecurityAuthentication { } } -type ApiConstructor = new (config: Configuration) => T; +export type ApiConstructor = new (config: Configuration) => T; export function makeAbsolutePath(root: string, file: string): string { if (!root || path.isAbsolute(file)) {