UNPKG
@ply-ct/ply
Version:
latest (3.3.0)
3.3.0
3.2.18
3.2.17
3.2.16
3.2.15
3.2.14
3.2.13
3.2.12
3.2.11
3.2.10
3.2.9
3.2.8
3.2.7
3.2.6
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.0
3.0.56
3.0.55
3.0.54
3.0.53
3.0.52
3.0.51
3.0.50
3.0.49
3.0.48
3.0.47
3.0.46
3.0.45
3.0.44
3.0.43
3.0.42
3.0.41
3.0.40
3.0.39
3.0.38
3.0.37
3.0.36
3.0.35
3.0.34
3.0.33
3.0.32
3.0.31
3.0.30
3.0.29
3.0.28
3.0.27
3.0.26
3.0.25
3.0.24
3.0.23
3.0.22
3.0.21
3.0.20
3.0.19
3.0.17
3.0.16
REST API Automated Testing
github.com/ply-ct/ply
ply-ct/ply
@ply-ct/ply
/
dist
/
exec
/
decide.d.ts
10 lines
(9 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
StepExec
,
ExecResult
}
from
'./exec'
;
import
{
ExecContext
}
from
'./context'
;
/** * Cannot have side-effects (no updating values); */
export
declare
class
DecideExec
extends
StepExec
{
run
(
context
:
ExecContext
):
Promise
<
ExecResult
>;
isTrustRequired
():
boolean
; }