Skip to content

Commit

Permalink
don't omit indirect exports
Browse files Browse the repository at this point in the history
  • Loading branch information
weinand committed Nov 1, 2022
1 parent 8f8c5de commit 137e79c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vs/workbench/contrib/debug/common/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ export interface IDebugAdapterFactory extends ITerminalLauncher {
substituteVariables(folder: IWorkspaceFolder | undefined, config: IConfig): Promise<IConfig>;
}

interface IDebugAdapterExecutableOptions {
export interface IDebugAdapterExecutableOptions {
cwd?: string;
env?: { [key: string]: string };
}
Expand All @@ -748,12 +748,12 @@ export interface IDebugAdapterNamedPipeServer {
readonly path: string;
}

interface IDebugAdapterInlineImpl extends IDisposable {
export interface IDebugAdapterInlineImpl extends IDisposable {
readonly onDidSendMessage: Event<DebugProtocol.Message>;
handleMessage(message: DebugProtocol.Message): void;
}

interface IDebugAdapterImpl {
export interface IDebugAdapterImpl {
readonly type: 'implementation';
readonly implementation: IDebugAdapterInlineImpl;
}
Expand Down

0 comments on commit 137e79c

Please sign in to comment.