@applitools/eyes
Version:
10 lines (9 loc) • 361 B
TypeScript
import { EyesError } from './EyesError';
import { TestResults, TestResultsData } from '../output/TestResults';
export declare class TestFailedError extends EyesError {
private _result;
constructor(message: string, results: TestResults);
constructor(results: TestResults);
get testResults(): TestResults;
getTestResults(): TestResultsData;
}