We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60c68d8 commit 55f08a6Copy full SHA for 55f08a6
src/hlsBinaries.ts
@@ -1,5 +1,4 @@
1
import * as child_process from 'child_process';
2
-import { ExecException } from 'child_process';
3
import * as fs from 'fs';
4
import { stat } from 'fs/promises';
5
import * as https from 'https';
@@ -34,7 +33,7 @@ const exeExt = process.platform === 'win32' ? '.exe' : '';
34
33
* Callback invoked on process termination.
35
*/
36
type ProcessCallback = (
37
- error: ExecException | null,
+ error: child_process.ExecFileException | null,
38
stdout: string,
39
stderr: string,
40
resolve: (value: string | PromiseLike<string>) => void,
0 commit comments