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) • 351 B
TypeScript
export declare class ImageReference {
base64Image: string;
width: number;
height: number;
xTopLeft: number;
yTopLeft: number;
constructor(base64Image: string, width: number, height: number, xTopLeft: number, yTopLeft: number);
static fromJson(json: ImageReference): ImageReference;
toJson(): Record<string, unknown>;
}