Strict null check mainThreadTerminalService

Part of #60565
This commit is contained in:
Daniel Imms
2019-02-11 04:35:20 -08:00
parent d2771d8ed1
commit c7f83b2c85
3 changed files with 9 additions and 4 deletions

View File

@@ -940,7 +940,7 @@ export interface ShellLaunchConfigDto {
executable?: string;
args?: string[] | string;
cwd?: string | URI;
env?: { [key: string]: string };
env?: { [key: string]: string | null };
}
export interface ExtHostTerminalServiceShape {