UNPKG
@postdata/cli
Version:
latest (0.12.0)
0.12.0
A CLI to run Postdata test scripts in CI environments.
postdata.cn
mamahuhu-io/postdata
@postdata/cli
/
src
/
__tests__
/
types.ts
8 lines
(6 loc)
•
147 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
ExecException
}
from
"child_process"
;
export
type
ExecResponse
= {
error
:
ExecException
|
null
;
stdout
:
string
;
stderr
:
string
; };