Skip to content

Commit 9d5de8e

Browse files
authored
Merge pull request #302 from NikitaD8848/featured-collection-with-variants-card
Featured collection with variants card
2 parents 74801aa + c400b08 commit 9d5de8e

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
export default interface FeaturedCollectionProductTypes {
2+
variant: any[];
3+
url: string;
4+
display_tag: string[];
5+
image: string;
6+
replacement_done: boolean | null;
7+
rating: number;
8+
min_order_qty: number;
9+
currency_symbol: string;
10+
brand: string | null;
11+
item_name: string;
12+
in_stock_status: boolean;
13+
access_level: number;
14+
disabled: number;
15+
category: string;
16+
is_replacement: boolean | null;
17+
currency: string;
18+
order_status: string | null;
19+
oem_part_number: string | null;
20+
status: string;
21+
price: number;
22+
mrp_price: number;
23+
short_description: string | null;
24+
variant_of: string;
25+
attributes: any[];
26+
has_variants: number;
27+
strikethrough_rate: number | null;
28+
brand_img: string | null;
29+
name: string;
30+
slug: string;
31+
}
32+
export default interface FeaturedCollectionTypes {
33+
description: string | null;
34+
tag_image: string | null;
35+
tag_name: string | null;
36+
value: FeaturedCollectionProductTypes[];
37+
}

0 commit comments

Comments
 (0)