parcoursup/node_modules/assertion-error/index.d.ts
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01: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;