html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
11 lines (10 loc) • 311 B
TypeScript
import { ReactNode } from 'react';
import { ImageFile } from "../../../../types";
import { CoordBounds } from 'looks-same';
interface OnlyDiffModeProps {
diff: ImageFile & {
diffClusters?: CoordBounds[];
};
}
export declare function OnlyDiffMode(props: OnlyDiffModeProps): ReactNode;
export {};