File tree Expand file tree Collapse file tree 2 files changed +22
-15
lines changed Expand file tree Collapse file tree 2 files changed +22
-15
lines changed Original file line number Diff line number Diff line change @@ -11319,6 +11319,13 @@ declare module 'vscode' {
11319
11319
clear(): void;
11320
11320
}
11321
11321
11322
+ export type EnvironmentVariableScope = {
11323
+ /**
11324
+ * Any specific workspace folder to get collection for. If unspecified, collection applicable to all workspace folders is returned.
11325
+ */
11326
+ workspaceFolder?: WorkspaceFolder;
11327
+ };
11328
+
11322
11329
/**
11323
11330
* A location in the editor at which progress information can be shown. It depends on the
11324
11331
* location how progress is visually represented.
Original file line number Diff line number Diff line change @@ -7,22 +7,22 @@ declare module 'vscode' {
7
7
8
8
// https://github.com/microsoft/vscode/issues/182069
9
9
10
- export interface ExtensionContext {
11
- /**
12
- * Gets the extension's environment variable collection for this workspace, enabling changes
13
- * to be applied to terminal environment variables.
14
- *
15
- * @param scope The scope to which the environment variable collection applies to.
16
- */
17
- readonly environmentVariableCollection : EnvironmentVariableCollection & { getScopedEnvironmentVariableCollection ( scope : EnvironmentVariableScope ) : EnvironmentVariableCollection } ;
18
- }
10
+ // export interface ExtensionContext {
11
+ // /**
12
+ // * Gets the extension's environment variable collection for this workspace, enabling changes
13
+ // * to be applied to terminal environment variables.
14
+ // *
15
+ // * @param scope The scope to which the environment variable collection applies to.
16
+ // */
17
+ // readonly environmentVariableCollection: EnvironmentVariableCollection & { getScopedEnvironmentVariableCollection(scope: EnvironmentVariableScope): EnvironmentVariableCollection };
18
+ // }
19
19
20
- export type EnvironmentVariableScope = {
21
- /**
22
- * Any specific workspace folder to get collection for. If unspecified, collection applicable to all workspace folders is returned.
23
- */
24
- workspaceFolder ?: WorkspaceFolder ;
25
- } ;
20
+ // export type EnvironmentVariableScope = {
21
+ // /**
22
+ // * Any specific workspace folder to get collection for. If unspecified, collection applicable to all workspace folders is returned.
23
+ // */
24
+ // workspaceFolder?: WorkspaceFolder;
25
+ // };
26
26
27
27
export interface EnvironmentVariableCollection extends Iterable < [ variable : string , mutator : EnvironmentVariableMutator ] > {
28
28
/**
You can’t perform that action at this time.
0 commit comments