@theia/plugin 1.24.0-next.51 → 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 +15 -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
|
@@ -2549,6 +2549,13 @@ export module '@theia/plugin' {
|
|
|
2549
2549
|
*/
|
|
2550
2550
|
appendLine(value: string): void;
|
|
2551
2551
|
|
|
2552
|
+
/**
|
|
2553
|
+
* Replaces all output from the channel with the given value.
|
|
2554
|
+
*
|
|
2555
|
+
* @param value A string, falsy values will not be printed.
|
|
2556
|
+
*/
|
|
2557
|
+
replace(value: string): void;
|
|
2558
|
+
|
|
2552
2559
|
/**
|
|
2553
2560
|
* Removes all output from the channel.
|
|
2554
2561
|
*/
|
|
@@ -8063,6 +8070,14 @@ export module '@theia/plugin' {
|
|
|
8063
8070
|
*/
|
|
8064
8071
|
static readonly SourceOrganizeImports: CodeActionKind;
|
|
8065
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
|
+
|
|
8066
8081
|
private constructor(value: string);
|
|
8067
8082
|
|
|
8068
8083
|
/**
|