@iotize/tap-scripts
Version:
IoTize Tap scripts
11 lines (10 loc) • 504 B
TypeScript
import { InstructionInterface } from './instruction.interface';
import { TestRunnerContextInterface } from '../test-runner-context-interface';
export declare type GotoInstructionType = 'NOK' | 'OK' | 'ALWAYS';
export declare class GotoInstruction implements InstructionInterface<void> {
protected type: GotoInstructionType;
protected label: string;
constructor(type: GotoInstructionType, label: string);
run(context: TestRunnerContextInterface): void;
toString(): string;
}