Skip to content

Commit 52fab4d

Browse files
Octave Raimbaultdispix
authored andcommitted
fix(getObjects): null in return type for items
1 parent c6e8718 commit 52fab4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client-search/src/types/GetObjectsResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ export type GetObjectsResponse<TObject> = {
44
/**
55
* The list of results.
66
*/
7-
results: Array<TObject & ObjectWithObjectID>;
7+
results: Array<(TObject & ObjectWithObjectID) | null>;
88
};

0 commit comments

Comments
 (0)