@theia/plugin 1.30.0-next.42 → 1.30.0-next.45
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.30.0-next.
|
|
3
|
+
"version": "1.30.0-next.45+22a5f7e98",
|
|
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": "22a5f7e98ec23c664bfa9916a0d7f81e727fa26a"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -7640,6 +7640,12 @@ export module '@theia/plugin' {
|
|
|
7640
7640
|
* [Folding](https://code.visualstudio.com/docs/editor/codebasics#_folding) in the editor.
|
|
7641
7641
|
*/
|
|
7642
7642
|
export interface FoldingRangeProvider {
|
|
7643
|
+
|
|
7644
|
+
/**
|
|
7645
|
+
* An optional event to signal that the folding ranges from this provider have changed.
|
|
7646
|
+
*/
|
|
7647
|
+
onDidChangeFoldingRanges?: Event<void>;
|
|
7648
|
+
|
|
7643
7649
|
/**
|
|
7644
7650
|
* Returns a list of folding ranges or null and undefined if the provider
|
|
7645
7651
|
* does not want to participate or was cancelled.
|