We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76f8b2c commit 4a0d85dCopy full SHA for 4a0d85d
src/vs/workbench/api/common/extHostTerminalService.ts
@@ -873,7 +873,7 @@ export abstract class BaseExtHostTerminalService extends Disposable implements I
873
874
class EnvironmentVariableCollection {
875
readonly map: Map<string, IEnvironmentVariableMutator> = new Map();
876
- readonly scopedCollections: Map<string, vscode.EnvironmentVariableCollection & { onDidChangeCollection: Event<void> }> = new Map();
+ private readonly scopedCollections: Map<string, ScopedEnvironmentVariableCollection> = new Map();
877
readonly descriptionMap: Map<string, IEnvironmentDescriptionMutator> = new Map();
878
private _persistent: boolean = true;
879
0 commit comments