| 2 | import type { Delta, Options } from '../../src/index.js'; |
| 3 | |
| 4 | interface Example { |
| 5 | name?: string; |
| 6 | options?: Options; |
| 7 | left: unknown; |
| 8 | right: unknown; |
| 9 | delta?: Delta; |
| 10 | reverse?: Delta; |
| 11 | exactReverse?: boolean; |
| 12 | noPatch?: boolean; |
| 13 | error?: RegExp; |
| 14 | } |
| 15 | |
| 16 | type ExampleGroup = Example[]; |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…