UNPKG

444 BTypeScriptView Raw
1import ExtendoError from "extendo-error";
2export declare class MatchError extends ExtendoError {
3 protected _actual: any;
4 get actual(): any;
5 protected _expected: any;
6 get expected(): any;
7 protected _extras: {
8 [prop: string]: any;
9 };
10 get extras(): {
11 [prop: string]: any;
12 };
13 constructor(message?: string, expectedValue?: any, actualValue?: any, extras?: {
14 [prop: string]: any;
15 });
16}