@theia/plugin 1.25.0-next.43 → 1.25.0-next.46
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.25.0-next.
|
|
3
|
+
"version": "1.25.0-next.46+adb4f7c2d2e",
|
|
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": "adb4f7c2d2e7c44b191d9e758eead72c4c29b4e9"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -10941,6 +10941,11 @@ export module '@theia/plugin' {
|
|
|
10941
10941
|
* Once disposed, this comment thread will be removed from visible editors and Comment Panel when appropriate.
|
|
10942
10942
|
*/
|
|
10943
10943
|
dispose(): void;
|
|
10944
|
+
|
|
10945
|
+
/**
|
|
10946
|
+
* Whether the thread supports reply. Defaults to true.
|
|
10947
|
+
*/
|
|
10948
|
+
canReply: boolean;
|
|
10944
10949
|
}
|
|
10945
10950
|
|
|
10946
10951
|
/**
|