Update Node fills due to updated types package

This commit is contained in:
Asher
2019-01-11 18:37:31 -06:00
committed by Kyle Carberry
parent d128ca6d68
commit a06854a937
3 changed files with 18 additions and 12 deletions

View File

@@ -161,7 +161,7 @@ function fork(modulePath: string): cp.ChildProcess {
}));
}
function spawn(_command: string, _args?: ReadonlyArray<string>, _options?: cp.SpawnOptions): cp.ChildProcess {
function spawn(_command: string, _args?: ReadonlyArray<string> | cp.SpawnOptions, _options?: cp.SpawnOptions): cp.ChildProcess {
throw new Error("not implemented");
}
// tslint:enable only-arrow-functions