@theia/plugin 1.33.0-next.2 → 1.33.0-next.3
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.
- package/package.json +2 -2
- package/src/theia.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.33.0-next.
|
|
3
|
+
"version": "1.33.0-next.3+e1f52dbbe",
|
|
4
4
|
"description": "Theia - Plugin API",
|
|
5
5
|
"types": "./src/theia.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"nyc": {
|
|
33
33
|
"extends": "../../configs/nyc.json"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "e1f52dbbe42be36c4345f7126272529a8f45845a"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -10664,6 +10664,12 @@ export module '@theia/plugin' {
|
|
|
10664
10664
|
*/
|
|
10665
10665
|
readonly name: string;
|
|
10666
10666
|
|
|
10667
|
+
/**
|
|
10668
|
+
* The parent session of this debug session, if it was created as a child.
|
|
10669
|
+
* @see DebugSessionOptions.parentSession
|
|
10670
|
+
*/
|
|
10671
|
+
readonly parentSession?: DebugSession;
|
|
10672
|
+
|
|
10667
10673
|
/**
|
|
10668
10674
|
* The workspace folder of this session or `undefined` for a folderless setup.
|
|
10669
10675
|
*/
|