@theia/plugin 1.25.0-next.15 → 1.25.0-next.18
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 +1 -2
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.18+1972f21c93e",
|
|
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": "1972f21c93e510dcff3957fdf9f9c01556bc28ca"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -6879,8 +6879,7 @@ export module '@theia/plugin' {
|
|
|
6879
6879
|
* thenable.
|
|
6880
6880
|
*
|
|
6881
6881
|
*/
|
|
6882
|
-
export type ProviderResult<T> = T | undefined |
|
|
6883
|
-
|
|
6882
|
+
export type ProviderResult<T> = T | undefined | null | Thenable<T | undefined | null>;
|
|
6884
6883
|
/**
|
|
6885
6884
|
* A symbol kind.
|
|
6886
6885
|
*/
|