UNPKG

@salla.sa/twilight-components

Version:
16 lines (15 loc) 391 B
export interface RecommendedProduct { objectID: string; public_product_id: string; name: Record<string, string>; image: string; price: Record<string, Record<string, number>>; sale_price: Record<string, Record<string, number>>; status: string; url?: string; } export interface XSellResponse { results: Array<{ hits: RecommendedProduct[]; }>; }