@k8slens/extensions 5.5.0-git.b3e4026366.0 → 5.5.0-git.b6af0e3eba.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Copyright (c) OpenLens Authors. All rights reserved.
3
+ * Licensed under MIT License. See LICENSE in root directory for more information.
4
+ */
5
+ import { JsonApi } from "./json-api";
6
+ export declare let apiBase: JsonApi;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Copyright (c) OpenLens Authors. All rights reserved.
3
+ * Licensed under MIT License. See LICENSE in root directory for more information.
4
+ */
5
+ import { KubeJsonApi } from "./kube-json-api";
6
+ export declare const apiKube: KubeJsonApi;
@@ -2,8 +2,5 @@
2
2
  * Copyright (c) OpenLens Authors. All rights reserved.
3
3
  * Licensed under MIT License. See LICENSE in root directory for more information.
4
4
  */
5
- import { JsonApi } from "./json-api";
6
- import { KubeJsonApi } from "./kube-json-api";
7
- declare let apiBase: JsonApi;
8
- declare let apiKube: KubeJsonApi;
9
- export { apiBase, apiKube, };
5
+ export { apiBase } from "./api-base";
6
+ export { apiKube } from "./api-kube";