Fix expected return type error

This commit is contained in:
Alexander Futász
2019-01-24 11:15:54 +01:00
parent d95b487d88
commit aad32876fc

View File

@@ -5,5 +5,5 @@ shell.git.add('.'); // $ExpectType ExecOutputReturnValue
shell.git.commit('-am', 'Fixed issue #1'); // $ExpectType ExecOutputReturnValue
shell.git.push('origin', 'master'); // $ExpectType ExecOutputReturnValue
shell.cd('string'); // $ExpectType void
shell.cd('string'); // $ExpectType ShellString
shell.cd(123); // $ExpectError