Move single ext collection updates across

This commit is contained in:
Daniel Imms
2020-03-25 11:57:12 -07:00
parent 8ee60554b5
commit ed9e7241b7
8 changed files with 128 additions and 79 deletions

View File

@@ -428,7 +428,6 @@ export interface TerminalLaunchConfig {
}
export interface IEnvironmentVariableCollectionDto {
extensionIdentifier: string;
variables: string[];
values: string[];
types: EnvironmentVariableMutatorType[];
@@ -444,7 +443,7 @@ export interface MainThreadTerminalServiceShape extends IDisposable {
$stopSendingDataEvents(): void;
$startHandlingLinks(): void;
$stopHandlingLinks(): void;
$updateEnvironmentVariableCollections(collections: IEnvironmentVariableCollectionDto[]): void;
$setEnvironmentVariableCollection(extensionIdentifier: string, collection: IEnvironmentVariableCollectionDto | undefined): void;
// Process
$sendProcessTitle(terminalId: number, title: string): void;