@@ -33,6 +33,7 @@ import { TerminalDataBufferer } from 'vs/platform/terminal/common/terminalDataBu
3333import * as terminalEnvironment from 'vs/workbench/contrib/terminal/common/terminalEnvironment' ;
3434import { getMainProcessParentEnv } from 'vs/workbench/contrib/terminal/node/terminalEnvironment' ;
3535import { TerminalProcess } from 'vs/platform/terminal/node/terminalProcess' ;
36+ import { ISetTerminalLayoutInfoArgs , IGetTerminalLayoutInfoArgs } from 'vs/platform/terminal/common/terminalProcess'
3637import { AbstractVariableResolverService } from 'vs/workbench/services/configurationResolver/common/variableResolver' ;
3738import { ExtensionScanner , ExtensionScannerInput } from 'vs/workbench/services/extensions/node/extensionPoints' ;
3839
@@ -639,7 +640,7 @@ export class TerminalProviderChannel implements IServerChannel<RemoteAgentConnec
639640 private readonly terminals = new Map < number , Terminal > ( ) ;
640641 private id = 0 ;
641642
642- private readonly layouts = new Map < string , terminal . ISetTerminalLayoutInfoArgs > ( ) ;
643+ private readonly layouts = new Map < string , ISetTerminalLayoutInfoArgs > ( ) ;
643644
644645 public constructor ( private readonly logService : ILogService ) {
645646
@@ -876,11 +877,11 @@ export class TerminalProviderChannel implements IServerChannel<RemoteAgentConnec
876877 return terminals . filter ( ( t ) => t . isOrphan ) ;
877878 }
878879
879- public async setTerminalLayoutInfo ( args : terminal . ISetTerminalLayoutInfoArgs ) : Promise < void > {
880+ public async setTerminalLayoutInfo ( args : ISetTerminalLayoutInfoArgs ) : Promise < void > {
880881 this . layouts . set ( args . workspaceId , args ) ;
881882 }
882883
883- public async getTerminalLayoutInfo ( args : terminal . IGetTerminalLayoutInfoArgs ) : Promise < ITerminalsLayoutInfo | undefined > {
884+ public async getTerminalLayoutInfo ( args : IGetTerminalLayoutInfoArgs ) : Promise < ITerminalsLayoutInfo | undefined > {
884885 const layout = this . layouts . get ( args . workspaceId ) ;
885886 if ( ! layout ) {
886887 return undefined ;
0 commit comments