Files
UoL/CM2010 Software Design and Development/Topic 2/8.2.4/node_modules/assertion-error/index.d.ts
2021-06-16 19:39:43 -05:00

12 lines
275 B
TypeScript

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;