UNPKG

@postdata/cli

Version:

A CLI to run Postdata test scripts in CI environments.

8 lines (6 loc) 147 B
import { ExecException } from "child_process"; export type ExecResponse = { error: ExecException | null; stdout: string; stderr: string; };