@theia/plugin 1.18.0-next.94 → 1.18.0-next.95

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 +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.18.0-next.94+6bc49aedac3",
3
+ "version": "1.18.0-next.95+5f811c89cca",
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": "6bc49aedac3de25d763f5eb614eb57e4a86c8f1c"
35
+ "gitHead": "5f811c89cca2ed32258302ac33ab3759cb619134"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -7320,6 +7320,18 @@ declare module '@theia/plugin' {
7320
7320
  constructor(uri: Uri, rangeOrPosition: Range | Position);
7321
7321
  }
7322
7322
 
7323
+ /**
7324
+ * Represents the connection of two locations. Provides additional metadata over normal {@link Location locations},
7325
+ * including an origin range.
7326
+ */
7327
+ export type LocationLink = DefinitionLink;
7328
+
7329
+ /**
7330
+ * The declaration of a symbol representation as one or many {@link Location locations}
7331
+ * or {@link LocationLink location links}.
7332
+ */
7333
+ export type Declaration = Location | Location[] | LocationLink[];
7334
+
7323
7335
  /**
7324
7336
  * The event that is fired when diagnostics change.
7325
7337
  */