mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 12:30:18 +00:00
fixed execSync and execFileSync return type
This commit is contained in:
Vendored
+2
-2
@@ -899,7 +899,7 @@ declare module "child_process" {
|
||||
maxBuffer?: number;
|
||||
killSignal?: string;
|
||||
encoding?: string;
|
||||
}): ChildProcess;
|
||||
}): string | Buffer;
|
||||
export function execFileSync(command: string, args?: string[], options?: {
|
||||
cwd?: string;
|
||||
input?: string|Buffer;
|
||||
@@ -911,7 +911,7 @@ declare module "child_process" {
|
||||
maxBuffer?: number;
|
||||
killSignal?: string;
|
||||
encoding?: string;
|
||||
}): ChildProcess;
|
||||
}): string | Buffer;
|
||||
}
|
||||
|
||||
declare module "url" {
|
||||
|
||||
Reference in New Issue
Block a user