GetReviewResponse
Response of the getReview API endpoint.
Comes in handy while creating generic return types constraints used in combination with custom queries.
type GetReviewResponse = Record<"reviews", ReviewQueryResult & {
limit: number;
}>;Response of the getReview API endpoint.
Comes in handy while creating generic return types constraints used in combination with custom queries.
type GetReviewResponse = Record<"reviews", ReviewQueryResult & {
limit: number;
}>;