Skip to content

Commit 3a0f9af

Browse files
chore: type fix for buildQueries
1 parent 99bc2c0 commit 3a0f9af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

types/query-helpers.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ export type BuiltQueryMethods<Arguments extends any[]> = [
6969

7070
export function buildQueries<Arguments extends any[]>(
7171
queryAllBy: GetAllBy<Arguments>,
72-
getMultipleError: GetErrorFunction,
73-
getMissingError: GetErrorFunction,
72+
getMultipleError: GetErrorFunction<Arguments>,
73+
getMissingError: GetErrorFunction<Arguments>,
7474
): BuiltQueryMethods<Arguments>

0 commit comments

Comments
 (0)