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