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

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 +3 -3
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.50+4ade5924584",
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": "4ade592458449ff262bce696a80a07e32a444d3d"
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.~~
@@ -10056,14 +10056,14 @@ export module '@theia/plugin' {
10056
10056
  * @param breakpoints The breakpoints to add.
10057
10057
  */
10058
10058
  // eslint-disable-next-line @typescript-eslint/no-shadow
10059
- export function addBreakpoints(breakpoints: Breakpoint[]): void;
10059
+ export function addBreakpoints(breakpoints: readonly Breakpoint[]): void;
10060
10060
 
10061
10061
  /**
10062
10062
  * Remove breakpoints.
10063
10063
  * @param breakpoints The breakpoints to remove.
10064
10064
  */
10065
10065
  // eslint-disable-next-line @typescript-eslint/no-shadow
10066
- export function removeBreakpoints(breakpoints: Breakpoint[]): void;
10066
+ export function removeBreakpoints(breakpoints: readonly Breakpoint[]): void;
10067
10067
  }
10068
10068
 
10069
10069
  /**