We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73670df commit 4ea0d05Copy full SHA for 4ea0d05
mod.ts
@@ -1,6 +1,4 @@
1
-import type { RestClient } from './common.ts';
2
-export type { RestClient };
3
-
+export * from './common.ts';
4
export * from './stream-transformers.ts';
5
6
/**
@@ -18,6 +16,8 @@ import { InClusterRestClient } from './transports/via-incluster.ts';
18
16
import { KubectlRawRestClient } from './transports/via-kubectl-raw.ts';
19
17
export { InClusterRestClient, KubectlRawRestClient };
20
+import type { RestClient } from './common.ts';
+
21
// Feeble attempt at automatically deciding how to talk to Kubernetes
22
// You'll still need to set the correct permissions for where you are running.
23
// You can probably be more specific and secure with app-specific Deno.args flags
0 commit comments