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
13 lines (12 loc) • 508 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InteractiveAnnotationRequest = void 0;
class InteractiveAnnotationRequest {
constructor(boundingBoxes, imageString) {
this.msgName = InteractiveAnnotationRequest.msgName;
this.boundingBoxes = boundingBoxes;
this.imageString = imageString;
}
}
exports.InteractiveAnnotationRequest = InteractiveAnnotationRequest;
InteractiveAnnotationRequest.msgName = 'START_INTERACTIVE_ANNOTATION_REQUEST';