@theia/plugin 1.22.0-next.26 → 1.22.0-next.27

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 +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.22.0-next.26+8b3466971c1",
3
+ "version": "1.22.0-next.27+c56aa230fe5",
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": "8b3466971c112af3e655e4eb4b19f80cfc511314"
35
+ "gitHead": "c56aa230fe50f20b598b2b4c4273cad4486b4750"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -9762,6 +9762,12 @@ export module '@theia/plugin' {
9762
9762
  */
9763
9763
  export function startDebugging(folder: WorkspaceFolder | undefined, nameOrConfiguration: string | DebugConfiguration, options: DebugSessionOptions): PromiseLike<boolean>;
9764
9764
 
9765
+ /**
9766
+ * Stop the given debug session or stop all debug sessions if session is omitted.
9767
+ * @param session The [debug session](#DebugSession) to stop; if omitted all sessions are stopped.
9768
+ */
9769
+ export function stopDebugging(session?: DebugSession): PromiseLike<void>;
9770
+
9765
9771
  /**
9766
9772
  * Add breakpoints.
9767
9773
  * @param breakpoints The breakpoints to add.