html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
14 lines (13 loc) • 466 B
TypeScript
import { CoordBounds } from 'looks-same';
import React, { RefObject } from 'react';
import { ImageSize } from "../../../../types";
interface DiffCircleProps {
diffImageOriginalSize: ImageSize;
diffImageRef: RefObject<HTMLElement>;
diffCluster: CoordBounds;
}
export interface DiffCircleHandle {
pulse: () => void;
}
export declare const DiffCircle: React.ForwardRefExoticComponent<DiffCircleProps & React.RefAttributes<DiffCircleHandle>>;
export {};