@theia/plugin 1.26.0-next.2 → 1.26.0-next.20
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 +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.26.0-next.
|
|
3
|
+
"version": "1.26.0-next.20+9b8bc9eb615",
|
|
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": "9b8bc9eb61573ad7e663587af2ef2043371b3321"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -9648,6 +9648,11 @@ export module '@theia/plugin' {
|
|
|
9648
9648
|
*/
|
|
9649
9649
|
readonly name: string;
|
|
9650
9650
|
|
|
9651
|
+
/**
|
|
9652
|
+
* The workspace folder of this session or `undefined` for a folderless setup.
|
|
9653
|
+
*/
|
|
9654
|
+
readonly workspaceFolder: WorkspaceFolder | undefined;
|
|
9655
|
+
|
|
9651
9656
|
/**
|
|
9652
9657
|
* The "resolved" [debug configuration](#DebugConfiguration) of this session.
|
|
9653
9658
|
*/
|