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 9aa1f91 commit 48adc2e
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 @@ -726,7 +726,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 @@ -749,12 +749,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 48adc2e

Please sign in to comment.