UNPKG

askui

Version:

Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on

12 lines (11 loc) 438 B
import { Action } from './action'; import { ControlCommandCode } from './control-command-code'; export declare class ControlCommand { code: ControlCommandCode; actions: Action[]; tryToRepeat: boolean; constructor(code: ControlCommandCode, actions: Action[], tryToRepeat?: boolean); static fromJson(json: unknown, resizeRatio?: number): ControlCommand; setTextToBeTyped(text: string): void; toJson(): object; }