UNPKG

rivet

Version:

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

9 lines (8 loc) 230 B
export interface IRunCommandOptions { NODE_ENV?: string; PATH?: string; cwd?: string; SHELL?: string; } declare const runCommand: (command: string, options?: IRunCommandOptions) => void; export default runCommand;