deps: bump @types/node + fix type issues

This commit is contained in:
Patrik Oldsberg
2020-07-27 16:16:13 +02:00
parent 1baccd1304
commit a79b844aee
2 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ export async function runCheck(cmd: string, ...args: string[]) {
}
export async function waitForExit(
child: ChildProcess & { exitCode?: number },
child: ChildProcess & { exitCode: number | null },
name?: string,
): Promise<void> {
if (typeof child.exitCode === 'number') {