Add Initial commit

This commit is contained in:
Lev
2021-06-16 17:23:26 -05:00
parent ab56bbf9fc
commit d3d84e81c3
816 changed files with 157084 additions and 0 deletions

View File

@ -0,0 +1,11 @@
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;