Spaces:
Paused
Paused
File size: 275 Bytes
2eb1c4f | 1 2 3 4 5 6 7 8 9 10 11 12 | type AssertionError<T = {}> = Error & T & {
showDiff: boolean;
};
interface AssertionErrorConstructor {
new<T = {}>(message: string, props?: T, ssf?: Function): AssertionError<T>;
}
declare const AssertionError: AssertionErrorConstructor;
export = AssertionError;
|