Skip to content

Commit 064f26f

Browse files
authored
chore: fix TS syntax
1 parent 23d498f commit 064f26f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export interface RenderOptions<
7070
*
7171
* @see https://testing-library.com/docs/react-testing-library/api/#wrapper
7272
*/
73-
wrapper?: React.ComponentType | (props: {children: React.ReactNode}) => JSX.Element
73+
wrapper?: React.ComponentType | ((props: {children: React.ReactNode}) => JSX.Element)
7474
}
7575

7676
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>

0 commit comments

Comments
 (0)