Callum Skeet
Results
2
comments of
Callum Skeet
I used a triple slash directive to get the correct types added: ```ts /// ``` This was in a `.d.ts` file that the ts compiler had visibility of (e.g. `src/types/jest.d.ts`)
I was having issues getting types for this and reanimated's jest extensions. My updated file now looks like this: ```ts import { JestNativeMatchers } from '@testing-library/jest-native/extend-expect' declare global { namespace...