Skip to content

Commit d126b9f

Browse files
authored
Remove a few exports (#165158)
* Remove a few `export`s * don't omit indirect exports
1 parent 35a0299 commit d126b9f

File tree

4 files changed

+5
-16
lines changed

4 files changed

+5
-16
lines changed

src/vs/platform/debug/common/extensionHostDebug.ts

-7
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,6 @@ export interface IOpenExtensionWindowResult {
3232
success: boolean;
3333
}
3434

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-
4235
export interface IExtensionHostDebugService {
4336
readonly _serviceBrand: undefined;
4437

src/vs/workbench/contrib/debug/common/debug.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -820,11 +820,7 @@ export interface IDebugAdapterDescriptorFactory {
820820
createDebugAdapterDescriptor(session: IDebugSession): Promise<IAdapterDescriptor>;
821821
}
822822

823-
export interface IDebugAdapterTrackerFactory {
824-
readonly type: string;
825-
}
826-
827-
export interface ITerminalLauncher {
823+
interface ITerminalLauncher {
828824
runInTerminal(args: DebugProtocol.RunInTerminalRequestArguments, sessionId: string): Promise<number | undefined>;
829825
}
830826

src/vs/workbench/services/configurationResolver/common/configurationResolver.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,23 +55,23 @@ export interface IConfigurationResolverService {
5555
contributeVariable(variable: string, resolution: () => Promise<string | undefined>): void;
5656
}
5757

58-
export interface PromptStringInputInfo {
58+
interface PromptStringInputInfo {
5959
id: string;
6060
type: 'promptString';
6161
description: string;
6262
default?: string;
6363
password?: boolean;
6464
}
6565

66-
export interface PickStringInputInfo {
66+
interface PickStringInputInfo {
6767
id: string;
6868
type: 'pickString';
6969
description: string;
7070
options: (string | { value: string; label?: string })[];
7171
default?: string;
7272
}
7373

74-
export interface CommandInputInfo {
74+
interface CommandInputInfo {
7575
id: string;
7676
type: 'command';
7777
command: string;

src/vs/workbench/services/configurationResolver/common/variableResolver.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { IWorkspaceFolder } from 'vs/platform/workspace/common/workspace';
1717
import { ILabelService } from 'vs/platform/label/common/label';
1818
import { replaceAsync } from 'vs/base/common/strings';
1919

20-
export interface IVariableResolveContext {
20+
interface IVariableResolveContext {
2121
getFolderUri(folderName: string): uri | undefined;
2222
getWorkspaceFolderCount(): number;
2323
getConfigurationValue(folderUri: uri | undefined, section: string): string | undefined;

0 commit comments

Comments
 (0)