Commit 137e79c 1 parent 8f8c5de commit 137e79c Copy full SHA for 137e79c
File tree 1 file changed +3
-3
lines changed
src/vs/workbench/contrib/debug/common
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -725,7 +725,7 @@ export interface IDebugAdapterFactory extends ITerminalLauncher {
725
725
substituteVariables ( folder : IWorkspaceFolder | undefined , config : IConfig ) : Promise < IConfig > ;
726
726
}
727
727
728
- interface IDebugAdapterExecutableOptions {
728
+ export interface IDebugAdapterExecutableOptions {
729
729
cwd ?: string ;
730
730
env ?: { [ key : string ] : string } ;
731
731
}
@@ -748,12 +748,12 @@ export interface IDebugAdapterNamedPipeServer {
748
748
readonly path : string ;
749
749
}
750
750
751
- interface IDebugAdapterInlineImpl extends IDisposable {
751
+ export interface IDebugAdapterInlineImpl extends IDisposable {
752
752
readonly onDidSendMessage : Event < DebugProtocol . Message > ;
753
753
handleMessage ( message : DebugProtocol . Message ) : void ;
754
754
}
755
755
756
- interface IDebugAdapterImpl {
756
+ export interface IDebugAdapterImpl {
757
757
readonly type : 'implementation' ;
758
758
readonly implementation : IDebugAdapterInlineImpl ;
759
759
}
You can’t perform that action at this time.
0 commit comments