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

11 lines (10 loc) 416 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; }