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
10 lines (9 loc) • 420 B
TypeScript
import { DetectedElement } from '../../model/annotation-result/detected-element';
import { RunnerProtocolRequest } from './runner-protocol-request';
export declare class InteractiveAnnotationRequest implements RunnerProtocolRequest {
static msgName: string;
boundingBoxes: DetectedElement[];
imageString: string;
msgName: string;
constructor(boundingBoxes: DetectedElement[], imageString: string);
}