shop
This commit is contained in:
@ -126,4 +126,34 @@ export type Currencies = {
|
||||
sign: string;
|
||||
active: boolean;
|
||||
suffix: boolean;
|
||||
}
|
||||
|
||||
export type FeatureValue = {
|
||||
parent: number,
|
||||
products_with_value: number,
|
||||
value: string,
|
||||
value_id: number,
|
||||
}
|
||||
|
||||
export type Feature = {
|
||||
feature: string,
|
||||
feature_id: number,
|
||||
feature_values: FeatureValue[],
|
||||
products_with_feature: number,
|
||||
}
|
||||
|
||||
export type ProductType = {
|
||||
applied_tax_rate: number,
|
||||
cover_picture_uuid: string,
|
||||
description: string,
|
||||
formatted_price: string,
|
||||
id: number,
|
||||
in_stock: number,
|
||||
is_sale_active: boolean,
|
||||
link_rewrite: string,
|
||||
name: string,
|
||||
price: number,
|
||||
tax_name: string,
|
||||
cart_item_id?: number
|
||||
product_id?: number
|
||||
}
|
Reference in New Issue
Block a user