UNPKG

@iotize/tap-scripts

Version:

IoTize Tap scripts

14 lines (13 loc) 602 B
import { InstructionInterface } from './instruction.interface'; import { TestRunnerContextInterface } from '../test-runner-context-interface'; import { LogLevel } from '../definitions'; export declare class DisplayInstruction implements InstructionInterface<void> { type: LogLevel; text: string; constructor(type: LogLevel, text: string); run(context: TestRunnerContextInterface): void; static Error(text: string): DisplayInstruction; static Verbose(text: string): DisplayInstruction; static Message(text: string): DisplayInstruction; toString(): string; }