UNPKG

@iotize/tap-scripts

Version:

IoTize Tap scripts

9 lines (8 loc) 367 B
import { InstructionInterface } from './instruction.interface'; import { TestRunnerContextInterface } from '../test-runner-context-interface'; export declare class EndInstruction implements InstructionInterface<void> { resultCode: number; constructor(resultCode?: number); run(context: TestRunnerContextInterface): void; toString(): string; }