-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Export
TestingLibraryMatchers
from matchers-standalone.d.ts
- Loading branch information
1 parent
f302b16
commit 91bd0d9
Showing
5 changed files
with
58 additions
and
3 deletions.
There are no files selected for viewing
Binary file not shown.
22 changes: 22 additions & 0 deletions
22
broken/.yarn/patches/@testing-library-jest-dom-npm-6.4.0-5ec45e6af1.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/types/matchers-standalone.d.ts b/types/matchers-standalone.d.ts | ||
index b8dea836febd6b593cedc6303ad3f11e252cbef5..e6ec950fe4561e4f5c16ddd159c19160c537a1eb 100644 | ||
--- a/types/matchers-standalone.d.ts | ||
+++ b/types/matchers-standalone.d.ts | ||
@@ -1,6 +1,6 @@ | ||
-import {type TestingLibraryMatchers} from './matchers' | ||
+import {type TestingLibraryMatchers as _TLM} from './matchers' | ||
|
||
-type TLM = TestingLibraryMatchers<any, void> | ||
+type TLM = _TLM<any, void> | ||
|
||
interface MatcherReturnType { | ||
pass: boolean | ||
@@ -23,6 +23,8 @@ declare namespace matchersStandalone { | ||
...rest: Parameters<TLM[T]> | ||
) => MatcherReturnType | ||
} & OverloadedMatchers | ||
+ | ||
+ type TestingLibraryMatchers<E, R> = _TLM<E, R> | ||
} | ||
|
||
declare const matchersStandalone: matchersStandalone.MatchersStandalone & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.