Files
freeCodeCamp/probot/presolver/node_modules/assertion-error/index.d.ts
2018-12-05 11:23:55 +05:30

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;