@theia/plugin 1.24.0-next.53 → 1.24.0-next.55
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 +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.24.0-next.
|
|
3
|
+
"version": "1.24.0-next.55+4b045482b95",
|
|
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": "4b045482b958e475dfdf5650e4b46003697c6152"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -8070,6 +8070,14 @@ export module '@theia/plugin' {
|
|
|
8070
8070
|
*/
|
|
8071
8071
|
static readonly SourceOrganizeImports: CodeActionKind;
|
|
8072
8072
|
|
|
8073
|
+
/**
|
|
8074
|
+
* Base kind for auto-fix source actions: `source.fixAll`.
|
|
8075
|
+
*
|
|
8076
|
+
* Fix all actions automatically fix errors that have a clear fix that do not require user input.
|
|
8077
|
+
* They should not suppress errors or perform unsafe fixes such as generating new types or classes.
|
|
8078
|
+
*/
|
|
8079
|
+
static readonly SourceFixAll: CodeActionKind;
|
|
8080
|
+
|
|
8073
8081
|
private constructor(value: string);
|
|
8074
8082
|
|
|
8075
8083
|
/**
|