@iotize/tap-scripts
Version:
IoTize Tap scripts
10 lines (9 loc) • 445 B
TypeScript
import { InstructionInterface } from './instruction.interface';
import { TestRunnerContextInterface } from '../test-runner-context-interface';
export declare class WaitInstruction implements InstructionInterface<void> {
static DEFAULT_WAIT_DELAY: number;
protected delayInMilliseconds: number;
constructor(delayInMilliseconds?: number);
run(context: TestRunnerContextInterface): Promise<void>;
toString(): string;
}