@applitools/eyes-browser
Version:
12 lines (11 loc) • 315 B
TypeScript
/// <reference types="node" />
import { RectangleSize } from './RectangleSize';
import { Location } from './Location';
export type Image = {
image: Buffer | URL | string;
name?: string;
dom?: string;
locationInViewport?: Location;
locationInView?: Location;
fullViewSize?: RectangleSize;
};