html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
10 lines (9 loc) • 317 B
TypeScript
import { ReactNode } from 'react';
import { ScreenshotDisplayData } from "./types";
interface SideBySideToFitModeProps {
actual: ScreenshotDisplayData;
diff: ScreenshotDisplayData;
expected: ScreenshotDisplayData;
}
export declare function ListMode(props: SideBySideToFitModeProps): ReactNode;
export {};