@k8slens/extensions 5.5.0-git.889baffcfe.0 → 5.5.0-git.b6af0e3eba.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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";