@theia/plugin 1.24.0-next.51 → 1.24.0-next.52
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 +7 -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.52+b1bd7bd528c",
|
|
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": "b1bd7bd528c257652f29451d168b750840c22e45"
|
|
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
|
*/
|