| 1 | import type { Assertion, AsymmetricMatchersContaining } from 'vitest'; |
| 2 | |
| 3 | interface CustomMatchers<R = unknown> { |
| 4 | toEqualHTML(html: string, options?: { ignoreAttrs?: string[] }): R; |
| 5 | } |
| 6 | |
| 7 | declare module 'vitest' { |
| 8 | interface Assertion<T = any> extends CustomMatchers<T> {} |
no outgoing calls
no test coverage detected
searching dependent graphs…