From 28e5f53a496fd1f16f8f5b50f66f52d91f52d23e Mon Sep 17 00:00:00 2001 From: David Harkness Date: Tue, 19 Jul 2022 09:08:26 -0700 Subject: [PATCH] Declare matchers for use with expect.not.MATCHER (#385) (#386) Co-authored-by: David Harkness --- types/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/index.d.ts b/types/index.d.ts index a40eab11..ff4d0eda 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -845,4 +845,8 @@ declare namespace jest { */ toEqualIgnoringWhitespace(string: string): any; } + + // noinspection JSUnusedGlobalSymbols + // eslint-disable-next-line @typescript-eslint/no-empty-interface + interface InverseAsymmetricMatchers extends Expect {} }