Skip to content

Commit 2010eb1

Browse files
authored
chore: format with prettier
1 parent 064f26f commit 2010eb1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

types/index.d.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ 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?:
74+
| React.ComponentType
75+
| ((props: {children: React.ReactNode}) => JSX.Element)
7476
}
7577

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

0 commit comments

Comments
 (0)