Skip to content

Commit 5fe3b7b

Browse files
abenhamdineedorivai
authored andcommittedJun 10, 2020
Omit some properties bound to JSX
1 parent b18f395 commit 5fe3b7b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎index.d.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,8 @@ export type SingleQueryProps = BaseProps & {
6262
export default function Media(props: SingleQueryProps): React.ReactElement;
6363
export default function Media<Q>(props: MultiQueryProps<Q>): React.ReactElement;
6464

65-
type UseMediaProps<Q> = SingleQueryProps | MultiQueryProps<Q>;
66-
export function useMedia<Q>(props: UseMediaProps<Q>): QueryResults<Q>;
65+
type UseMediaSingleQueryProps = Omit<SingleQueryProps, 'render' | 'children'>
66+
type UseMediaMultiQueryProps<Q> = Omit<MultiQueryProps<Q>, 'render' | 'children'>
67+
68+
export function useMedia(props: SingleQueryProps): boolean;
69+
export function useMedia<Q>(props: UseMediaMultiQueryProps<Q>): QueryResults<Q>;

0 commit comments

Comments
 (0)
Please sign in to comment.