@salla.sa/twilight-components
Version:
Salla Web Component
16 lines (15 loc) • 391 B
TypeScript
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[];
}>;
}