alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
17 lines (16 loc) • 444 B
TypeScript
import ExtendoError from "extendo-error";
export declare class MatchError extends ExtendoError {
protected _actual: any;
get actual(): any;
protected _expected: any;
get expected(): any;
protected _extras: {
[prop: string]: any;
};
get extras(): {
[prop: string]: any;
};
constructor(message?: string, expectedValue?: any, actualValue?: any, extras?: {
[prop: string]: any;
});
}