Commit 48adc2e 1 parent 9aa1f91 commit 48adc2e Copy full SHA for 48adc2e
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 @@ -726,7 +726,7 @@ export interface IDebugAdapterFactory extends ITerminalLauncher {
726
726
substituteVariables ( folder : IWorkspaceFolder | undefined , config : IConfig ) : Promise < IConfig > ;
727
727
}
728
728
729
- interface IDebugAdapterExecutableOptions {
729
+ export interface IDebugAdapterExecutableOptions {
730
730
cwd ?: string ;
731
731
env ?: { [ key : string ] : string } ;
732
732
}
@@ -749,12 +749,12 @@ export interface IDebugAdapterNamedPipeServer {
749
749
readonly path : string ;
750
750
}
751
751
752
- interface IDebugAdapterInlineImpl extends IDisposable {
752
+ export interface IDebugAdapterInlineImpl extends IDisposable {
753
753
readonly onDidSendMessage : Event < DebugProtocol . Message > ;
754
754
handleMessage ( message : DebugProtocol . Message ) : void ;
755
755
}
756
756
757
- interface IDebugAdapterImpl {
757
+ export interface IDebugAdapterImpl {
758
758
readonly type : 'implementation' ;
759
759
readonly implementation : IDebugAdapterInlineImpl ;
760
760
}
You can’t perform that action at this time.
0 commit comments