Skip to content

Commit 468609e

Browse files
chore: fix transpilation
1 parent 301d811 commit 468609e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/wrappers/child-process.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class ChildProcess {
7878

7979
public execFile(command: string, args: string[]): Promise<any> {
8080
return new Promise<any>((resolve, reject) => {
81-
childProcess.execFile(command, args, (error: any, stdout: NodeBuffer) => {
81+
childProcess.execFile(command, args, (error, stdout) => {
8282
if (error) {
8383
reject(error);
8484
} else {

0 commit comments

Comments
 (0)