7 lines
117 B
TypeScript

export interface giveRatingPayload {
rating: number;
comment?: string;
images?: string[];
orderId: string;
}