@theia/plugin 1.24.0-next.41 → 1.24.0-next.44
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 +9 -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.44+6d67d664bd3",
|
|
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": "6d67d664bd3f679fca68be51d06d360a115decb2"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -1296,6 +1296,15 @@ export module '@theia/plugin' {
|
|
|
1296
1296
|
*/
|
|
1297
1297
|
static parse(value: string): Uri;
|
|
1298
1298
|
|
|
1299
|
+
/**
|
|
1300
|
+
* Create an URI from its component parts
|
|
1301
|
+
*
|
|
1302
|
+
* @see {@link Uri.toString}
|
|
1303
|
+
* @param components The component parts of an Uri.
|
|
1304
|
+
* @return A new Uri instance.
|
|
1305
|
+
*/
|
|
1306
|
+
static from(components: { readonly scheme: string; readonly authority?: string; readonly path?: string; readonly query?: string; readonly fragment?: string }): Uri;
|
|
1307
|
+
|
|
1299
1308
|
/**
|
|
1300
1309
|
* Use the `file` and `parse` factory functions to create new `Uri` objects.
|
|
1301
1310
|
*/
|