UNPKG

@iotize/tap-scripts

Version:

IoTize Tap scripts

6 lines (5 loc) 242 B
import { TestRunnerContextInterface } from '../test-runner-context-interface'; export interface InstructionInterface<ReturnType> { run(context: TestRunnerContextInterface): Promise<ReturnType> | ReturnType; toString(): string; }