Skip to content

Commit

Permalink
Remove a few exports (#165158)
Browse files Browse the repository at this point in the history
* Remove a few `export`s

* don't omit indirect exports
  • Loading branch information
weinand committed Nov 1, 2022
1 parent 35a0299 commit d126b9f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
7 changes: 0 additions & 7 deletions src/vs/platform/debug/common/extensionHostDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,6 @@ export interface IOpenExtensionWindowResult {
success: boolean;
}

/**
* Like a IProcessEnvironment, but the value "null" deletes an environment variable
*/
export interface INullableProcessEnvironment {
[key: string]: string | null;
}

export interface IExtensionHostDebugService {
readonly _serviceBrand: undefined;

Expand Down
6 changes: 1 addition & 5 deletions src/vs/workbench/contrib/debug/common/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -820,11 +820,7 @@ export interface IDebugAdapterDescriptorFactory {
createDebugAdapterDescriptor(session: IDebugSession): Promise<IAdapterDescriptor>;
}

export interface IDebugAdapterTrackerFactory {
readonly type: string;
}

export interface ITerminalLauncher {
interface ITerminalLauncher {
runInTerminal(args: DebugProtocol.RunInTerminalRequestArguments, sessionId: string): Promise<number | undefined>;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,23 +55,23 @@ export interface IConfigurationResolverService {
contributeVariable(variable: string, resolution: () => Promise<string | undefined>): void;
}

export interface PromptStringInputInfo {
interface PromptStringInputInfo {
id: string;
type: 'promptString';
description: string;
default?: string;
password?: boolean;
}

export interface PickStringInputInfo {
interface PickStringInputInfo {
id: string;
type: 'pickString';
description: string;
options: (string | { value: string; label?: string })[];
default?: string;
}

export interface CommandInputInfo {
interface CommandInputInfo {
id: string;
type: 'command';
command: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { IWorkspaceFolder } from 'vs/platform/workspace/common/workspace';
import { ILabelService } from 'vs/platform/label/common/label';
import { replaceAsync } from 'vs/base/common/strings';

export interface IVariableResolveContext {
interface IVariableResolveContext {
getFolderUri(folderName: string): uri | undefined;
getWorkspaceFolderCount(): number;
getConfigurationValue(folderUri: uri | undefined, section: string): string | undefined;
Expand Down

0 comments on commit d126b9f

Please sign in to comment.