first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
11
node_modules/assertion-error/index.d.ts
generated
vendored
Normal file
11
node_modules/assertion-error/index.d.ts
generated
vendored
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue