Skip to content

Commit cd22566

Browse files
author
Octave Raimbault
authored
fix(getObjects): null in return type for items (#1183)
1 parent c6e8718 commit cd22566

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)