UNPKG
@iotize/tap-scripts
Version:
dev (2.0.0-alpha.2)
latest (2.2.0)
2.2.0
2.1.0
2.0.1
2.0.0-alpha.4
2.0.0-alpha.3
2.0.0-alpha.2
2.0.0-alpha.1
IoTize Tap scripts
@iotize/tap-scripts
/
dist
/
src
/
lib
/
instructions
/
instruction.interface.d.ts
6 lines
(5 loc)
•
242 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
TestRunnerContextInterface
}
from
'../test-runner-context-interface'
;
export
interface
InstructionInterface
<
ReturnType
> {
run
(
context
:
TestRunnerContextInterface
):
Promise
<
ReturnType
> |
ReturnType
;
toString
():
string
; }