| 19 | import { getQueriesForInstance } from './within'; |
| 20 | |
| 21 | export interface RenderOptions { |
| 22 | /** |
| 23 | * Pass a React Component as the wrapper option to have it rendered around the inner element. This is most useful for creating |
| 24 | * reusable custom render functions for common data providers. |
| 25 | */ |
| 26 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 27 | wrapper?: React.ComponentType<any>; |
| 28 | } |
| 29 | |
| 30 | export type RenderResult = Awaited<ReturnType<typeof render>>; |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…