@theia/plugin 1.24.0-next.48 → 1.24.0-next.49

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/theia.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.24.0-next.48+a19ce986434",
3
+ "version": "1.24.0-next.49+7a44ee6fef5",
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": "a19ce98643491360c30176ba9d9dc990cad5c322"
35
+ "gitHead": "7a44ee6fef59d0de9bc677eb68fb68835e554455"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -6214,7 +6214,7 @@ export module '@theia/plugin' {
6214
6214
  * @return true if the operation was successfully started and false otherwise if arguments were used that would result
6215
6215
  * in invalid workspace folder state (e.g. 2 folders with the same URI).
6216
6216
  */
6217
- export function updateWorkspaceFolders(start: number, deleteCount: number | undefined | null, ...workspaceFoldersToAdd: { uri: Uri, name?: string }[]): boolean;
6217
+ export function updateWorkspaceFolders(start: number, deleteCount: number | undefined | null, ...workspaceFoldersToAdd: { readonly uri: Uri, readonly name?: string }[]): boolean;
6218
6218
 
6219
6219
  /**
6220
6220
  * ~~Register a task provider.~~