This commit is contained in:
marzban-dev
2025-02-21 21:39:58 +03:30
parent 3f25e26bc9
commit 1ec616b17b
+3 -2
View File
@@ -55,7 +55,7 @@ declare global {
"detail_category": number
}
type ProductInPackItem = {
type ProductInPackItem = {
"id": number,
"item_title": string,
"cover": string
@@ -86,9 +86,10 @@ declare global {
"meta_keywords": string | null,
"meta_rating": number,
"category": number,
"colors": string[]
}
type ProductListItem = Pick<Product, "id" | "variants" | "name" | "rating" | "slug" | "category">
type ProductListItem = Pick<Product, "id" | "variants" | "name" | "rating" | "slug" | "category" | "colors">
type Article = {
id: number;