UNPKG

@iotize/tap-scripts

Version:

IoTize Tap scripts

11 lines (10 loc) 541 B
import { TapResponse } from '@iotize/tap'; import { TestRunnerContextInterface } from '../test-runner-context-interface'; import { InstructionInterface } from './instruction.interface'; export declare type OutputFunction = (response: TapResponse<any> | undefined, wordSize?: number) => any; export declare class OutputInstruction implements InstructionInterface<void> { wordSize?: number | undefined; constructor(wordSize?: number | undefined); run(context: TestRunnerContextInterface): void; toString(): string; }