()
| 605 | |
| 606 | // @ts-expect-error |
| 607 | const callbackTest: SuccessCallback = () => |
| 608 | queryClient.setQueryData(queryKey, (data) => { |
| 609 | expectTypeOf(data).toEqualTypeOf<number | undefined>() |
| 610 | return data |
| 611 | }) |
| 612 | }) |
| 613 | |
| 614 | it('should infer types correctly with block body arrow functions', () => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…