(file: string, args: string[], options?: SpawnOptions)
| 47 | export interface IProcessService extends IDisposable { |
| 48 | execObservable(file: string, args: string[], options?: SpawnOptions): ObservableExecutionResult<string>; |
| 49 | exec(file: string, args: string[], options?: SpawnOptions): Promise<ExecutionResult<string>>; |
| 50 | shellExec(command: string, options?: ShellOptions): Promise<ExecutionResult<string>>; |
| 51 | } |
| 52 |
no outgoing calls
no test coverage detected