Skip to content

Commit 137e79c

Browse files
committed
don't omit indirect exports
1 parent 8f8c5de commit 137e79c

File tree

1 file changed

+3
-3
lines changed
  • src/vs/workbench/contrib/debug/common

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ export interface IDebugAdapterFactory extends ITerminalLauncher {
725725
substituteVariables(folder: IWorkspaceFolder | undefined, config: IConfig): Promise<IConfig>;
726726
}
727727

728-
interface IDebugAdapterExecutableOptions {
728+
export interface IDebugAdapterExecutableOptions {
729729
cwd?: string;
730730
env?: { [key: string]: string };
731731
}
@@ -748,12 +748,12 @@ export interface IDebugAdapterNamedPipeServer {
748748
readonly path: string;
749749
}
750750

751-
interface IDebugAdapterInlineImpl extends IDisposable {
751+
export interface IDebugAdapterInlineImpl extends IDisposable {
752752
readonly onDidSendMessage: Event<DebugProtocol.Message>;
753753
handleMessage(message: DebugProtocol.Message): void;
754754
}
755755

756-
interface IDebugAdapterImpl {
756+
export interface IDebugAdapterImpl {
757757
readonly type: 'implementation';
758758
readonly implementation: IDebugAdapterInlineImpl;
759759
}

0 commit comments

Comments
 (0)