Skip to content

Commit

Permalink
chore: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
hverlin committed Jan 12, 2025
1 parent 14e7716 commit 3c10b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export async function safeExec(
let stdoutBuffer = Buffer.alloc(0);
let stderrBuffer = Buffer.alloc(0);
let killed = false;
let timeoutId: NodeJS.Timeout | undefined;
let timeoutId: Timer | null = null;

const childProcess = spawn(cmd, args, spawnOptions);

Expand Down

0 comments on commit 3c10b48

Please sign in to comment.