Commit d126b9f 1 parent 35a0299 commit d126b9f Copy full SHA for d126b9f
File tree 4 files changed +5
-16
lines changed
services/configurationResolver/common
4 files changed +5
-16
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,6 @@ export interface IOpenExtensionWindowResult {
32
32
success : boolean ;
33
33
}
34
34
35
- /**
36
- * Like a IProcessEnvironment, but the value "null" deletes an environment variable
37
- */
38
- export interface INullableProcessEnvironment {
39
- [ key : string ] : string | null ;
40
- }
41
-
42
35
export interface IExtensionHostDebugService {
43
36
readonly _serviceBrand : undefined ;
44
37
Original file line number Diff line number Diff line change @@ -820,11 +820,7 @@ export interface IDebugAdapterDescriptorFactory {
820
820
createDebugAdapterDescriptor ( session : IDebugSession ) : Promise < IAdapterDescriptor > ;
821
821
}
822
822
823
- export interface IDebugAdapterTrackerFactory {
824
- readonly type : string ;
825
- }
826
-
827
- export interface ITerminalLauncher {
823
+ interface ITerminalLauncher {
828
824
runInTerminal ( args : DebugProtocol . RunInTerminalRequestArguments , sessionId : string ) : Promise < number | undefined > ;
829
825
}
830
826
Original file line number Diff line number Diff line change @@ -55,23 +55,23 @@ export interface IConfigurationResolverService {
55
55
contributeVariable ( variable : string , resolution : ( ) => Promise < string | undefined > ) : void ;
56
56
}
57
57
58
- export interface PromptStringInputInfo {
58
+ interface PromptStringInputInfo {
59
59
id : string ;
60
60
type : 'promptString' ;
61
61
description : string ;
62
62
default ?: string ;
63
63
password ?: boolean ;
64
64
}
65
65
66
- export interface PickStringInputInfo {
66
+ interface PickStringInputInfo {
67
67
id : string ;
68
68
type : 'pickString' ;
69
69
description : string ;
70
70
options : ( string | { value : string ; label ?: string } ) [ ] ;
71
71
default ?: string ;
72
72
}
73
73
74
- export interface CommandInputInfo {
74
+ interface CommandInputInfo {
75
75
id : string ;
76
76
type : 'command' ;
77
77
command : string ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { IWorkspaceFolder } from 'vs/platform/workspace/common/workspace';
17
17
import { ILabelService } from 'vs/platform/label/common/label' ;
18
18
import { replaceAsync } from 'vs/base/common/strings' ;
19
19
20
- export interface IVariableResolveContext {
20
+ interface IVariableResolveContext {
21
21
getFolderUri ( folderName : string ) : uri | undefined ;
22
22
getWorkspaceFolderCount ( ) : number ;
23
23
getConfigurationValue ( folderUri : uri | undefined , section : string ) : string | undefined ;
You can’t perform that action at this time.
0 commit comments