UNPKG

rivet

Version:

Suite of utilities for working with the Rivet consumer-driven API contacts testing model.

13 lines (10 loc) 239 B
interface IChildProcess { execSync(command: string, options: any): any; } class ChildProcess implements IChildProcess { public execSync = (command, options) => ({ command, options, }) } module.exports = new ChildProcess();