@@ -33,6 +33,7 @@ import { TerminalDataBufferer } from 'vs/platform/terminal/common/terminalDataBu
33
33
import * as terminalEnvironment from 'vs/workbench/contrib/terminal/common/terminalEnvironment' ;
34
34
import { getMainProcessParentEnv } from 'vs/workbench/contrib/terminal/node/terminalEnvironment' ;
35
35
import { TerminalProcess } from 'vs/platform/terminal/node/terminalProcess' ;
36
+ import { ISetTerminalLayoutInfoArgs , IGetTerminalLayoutInfoArgs } from 'vs/platform/terminal/common/terminalProcess'
36
37
import { AbstractVariableResolverService } from 'vs/workbench/services/configurationResolver/common/variableResolver' ;
37
38
import { ExtensionScanner , ExtensionScannerInput } from 'vs/workbench/services/extensions/node/extensionPoints' ;
38
39
@@ -639,7 +640,7 @@ export class TerminalProviderChannel implements IServerChannel<RemoteAgentConnec
639
640
private readonly terminals = new Map < number , Terminal > ( ) ;
640
641
private id = 0 ;
641
642
642
- private readonly layouts = new Map < string , terminal . ISetTerminalLayoutInfoArgs > ( ) ;
643
+ private readonly layouts = new Map < string , ISetTerminalLayoutInfoArgs > ( ) ;
643
644
644
645
public constructor ( private readonly logService : ILogService ) {
645
646
@@ -876,11 +877,11 @@ export class TerminalProviderChannel implements IServerChannel<RemoteAgentConnec
876
877
return terminals . filter ( ( t ) => t . isOrphan ) ;
877
878
}
878
879
879
- public async setTerminalLayoutInfo ( args : terminal . ISetTerminalLayoutInfoArgs ) : Promise < void > {
880
+ public async setTerminalLayoutInfo ( args : ISetTerminalLayoutInfoArgs ) : Promise < void > {
880
881
this . layouts . set ( args . workspaceId , args ) ;
881
882
}
882
883
883
- public async getTerminalLayoutInfo ( args : terminal . IGetTerminalLayoutInfoArgs ) : Promise < ITerminalsLayoutInfo | undefined > {
884
+ public async getTerminalLayoutInfo ( args : IGetTerminalLayoutInfoArgs ) : Promise < ITerminalsLayoutInfo | undefined > {
884
885
const layout = this . layouts . get ( args . workspaceId ) ;
885
886
if ( ! layout ) {
886
887
return undefined ;
0 commit comments