child-process-exec-argv
Version:
Better handling child process exec argv
16 lines (14 loc) • 549 B
TypeScript
declare module ChildProcessExecArgv {
export async function getExecArgv(userParams?:string[]):string[];
export function syncGetExecArgv(userParams?:string[]):string[];
export class ChildProcessExecArgv{
constructor(process?:NodeJS.Process);
async getExecArgv(userParams?:string[]):string[];
syncGetExecArgv(userParams?:string[]):string[];
process:NodeJS.Process;
childDebuggble:boolean;
inspectPort:number|string;
childDebuggbleFlag:string;
}
}
export = ChildProcessExecArgv;