| 1 | import 'vitest'; |
| 2 | |
| 3 | interface CustomMatchers< |
| 4 | R = string | RegExp | Constructable | Error | undefined, |
| 5 | > { |
| 6 | errorWithMessage: (message) => R; |
| 7 | } |
| 8 | |
| 9 | declare module 'vitest' { |
| 10 | interface Assertion<T = any> extends CustomMatchers<T> {} |
nothing calls this directly
no outgoing calls
no test coverage detected