@iotize/tap-scripts
Version:
IoTize Tap scripts
10 lines (9 loc) • 393 B
TypeScript
import { InstructionInterface } from './instruction.interface';
import { TestRunnerContextInterface } from '../test-runner-context-interface';
export declare class LabelInstruction implements InstructionInterface<void> {
protected _name: string;
constructor(_name: string);
get name(): string;
run(context: TestRunnerContextInterface): void;
toString(): string;
}