Skip to content

Commit 5fbda13

Browse files
committed
chore: Ignore error
1 parent 320df47 commit 5fbda13

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export type UseQueryResult<T> = {
2626
export type MakeDataRequired<
2727
T extends readonly UseQueryResult<unknown>[]
2828
> = {
29+
// @ts-ignore: Cannot use data to index type T[K]
2930
[K in keyof T]-?: T[K] & { data: NonNullable<T[K]["data"]> };
3031
};
3132

0 commit comments

Comments
 (0)