Skip to content

Commit 4ea0d05

Browse files
committed
Export common.ts
1 parent 73670df commit 4ea0d05

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mod.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import type { RestClient } from './common.ts';
2-
export type { RestClient };
3-
1+
export * from './common.ts';
42
export * from './stream-transformers.ts';
53

64
/**
@@ -18,6 +16,8 @@ import { InClusterRestClient } from './transports/via-incluster.ts';
1816
import { KubectlRawRestClient } from './transports/via-kubectl-raw.ts';
1917
export { InClusterRestClient, KubectlRawRestClient };
2018

19+
import type { RestClient } from './common.ts';
20+
2121
// Feeble attempt at automatically deciding how to talk to Kubernetes
2222
// You'll still need to set the correct permissions for where you are running.
2323
// You can probably be more specific and secure with app-specific Deno.args flags

0 commit comments

Comments
 (0)