@k8slens/extensions 6.2.0-git.024c5ee52c.0 → 6.2.0-git.4f7776789b.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.
@@ -3,6 +3,7 @@
3
3
  * Licensed under MIT License. See LICENSE in root directory for more information.
4
4
  */
5
5
  import * as Mobx from "mobx";
6
+ import { spawn } from "node-pty";
6
7
  import * as LensExtensionsCommonApi from "../extensions/common-api";
7
8
  import * as LensExtensionsMainApi from "../extensions/main-api";
8
9
  /**
@@ -14,4 +15,7 @@ declare const LensExtensions: {
14
15
  Common: typeof LensExtensionsCommonApi;
15
16
  Main: typeof LensExtensionsMainApi;
16
17
  };
17
- export { Mobx, LensExtensions };
18
+ declare const Pty: {
19
+ spawn: typeof spawn;
20
+ };
21
+ export { Mobx, LensExtensions, Pty };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@k8slens/extensions",
3
3
  "productName": "OpenLens extensions",
4
4
  "description": "OpenLens - Open Source Kubernetes IDE: extensions",
5
- "version": "6.2.0-git.024c5ee52c.0",
5
+ "version": "6.2.0-git.4f7776789b.0",
6
6
  "copyright": "© 2022 OpenLens Authors",
7
7
  "license": "MIT",
8
8
  "main": "dist/src/extensions/extension-api.js",