@theia/plugin 1.22.0-next.31 → 1.22.0-next.32

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 +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.22.0-next.31+f81ef73a537",
3
+ "version": "1.22.0-next.32+d38f1118555",
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": "f81ef73a5379c938f57aad5ba0a109964169b4a4"
35
+ "gitHead": "d38f1118555141768c7c02e8648c0b1c474bf4fb"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -9758,9 +9758,10 @@ export module '@theia/plugin' {
9758
9758
  * Folder specific variables used in the configuration (e.g. '${workspaceFolder}') are resolved against the given folder.
9759
9759
  * @param folder The [workspace folder](#WorkspaceFolder) for looking up named configurations and resolving variables or `undefined` for a non-folder setup.
9760
9760
  * @param nameOrConfiguration Either the name of a debug or compound configuration or a [DebugConfiguration](#DebugConfiguration) object.
9761
+ * @param parentSessionOrOptions Debug session options. When passed a parent debug session, assumes options with just this parent session.
9761
9762
  * @return A thenable that resolves when debugging could be successfully started.
9762
9763
  */
9763
- export function startDebugging(folder: WorkspaceFolder | undefined, nameOrConfiguration: string | DebugConfiguration, options: DebugSessionOptions): PromiseLike<boolean>;
9764
+ export function startDebugging(folder: WorkspaceFolder | undefined, nameOrConfiguration: string | DebugConfiguration, parentSessionOrOptions?: DebugSession | DebugSessionOptions): PromiseLike<boolean>;
9764
9765
 
9765
9766
  /**
9766
9767
  * Stop the given debug session or stop all debug sessions if session is omitted.