UNPKG

@applitools/eyes-browser

Version:
16 lines (15 loc) 488 B
export type ImageRotation = -270 | -180 | -90 | 0 | 90 | 180 | 270; export declare class ImageRotationData { private _rotation; constructor(rotation: ImageRotation); get rotation(): ImageRotation; set rotation(rotation: ImageRotation); getRotation(): ImageRotation; setRotation(rotation: ImageRotation): void; /** @internal */ [Symbol.toPrimitive](): ImageRotation; /** @internal */ toJSON(): number; /** @internal */ toString(): string; }