diff --git a/types/index.d.ts b/types/index.d.ts index 780a6b98..ae926bd6 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -418,7 +418,7 @@ declare namespace jest { } // noinspection JSUnusedGlobalSymbols - interface Expect { + interface AsymmetricMatchers { /** * Note: Currently unimplemented * Passing assertion @@ -826,4 +826,10 @@ declare namespace jest { */ toEqualIgnoringWhitespace(string: string): any; } + + // noinspection JSUnusedGlobalSymbols + interface Expect extends AsymmetricMatchers {} + + // noinspection JSUnusedGlobalSymbols + interface InverseAsymmetricMatchers extends AsymmetricMatchers {} }