@theia/plugin 1.28.0-next.15 → 1.28.0-next.19

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 +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.28.0-next.15+32acfda9dc5",
3
+ "version": "1.28.0-next.19+33d76d5f14c",
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": "32acfda9dc56f53297d5d1ccf7a1ae1446dbfa92"
35
+ "gitHead": "33d76d5f14ce48b32d39e3b730d771e1a9ed8c47"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -6889,6 +6889,13 @@ export module '@theia/plugin' {
6889
6889
  */
6890
6890
  parameters: ParameterInformation[];
6891
6891
 
6892
+ /**
6893
+ * The index of the active parameter.
6894
+ *
6895
+ * If provided, this is used in place of SignatureHelp.activeParameter.
6896
+ */
6897
+ activeParameter?: number;
6898
+
6892
6899
  /**
6893
6900
  * Creates a new signature information object.
6894
6901
  *