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
/
types
/
collections.ts
11 lines
(8 loc)
•
245 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
HoppCollection
}
from
"@hoppscotch/data"
;
import
{
HoppEnvs
}
from
"./request"
;
export
type
CollectionRunnerParam
= {
collections
:
HoppCollection
[];
envs
:
HoppEnvs
;
delay
?:
number
; };
export
type
HoppCollectionFileExt
=
"json"
;