-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtype.d.ts
48 lines (44 loc) · 965 Bytes
/
type.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
export interface Category {
name: string
imageUrl: string
id: string
href?: string
}
export interface CategoryRootType {
categoryDisplayName: string
list: Category[]
productFunctions: Category[]
}
export interface Product {
name: string
id: string
imageUrl: string
basename1: string
basename2: string
basename3: string
basecore1: string
basecore2: string
basecore3: string
model: string
brandName: string
physicalproperty: string
storage: string
productimageliststore: ProductImage[]
imgList: ProductImage[]
productAttributeList?: { name: string; value: string }[]
ticketTypes: { rank: string; typeName: string; price: string }[]
advantage: string
introduction: string
description: string
}
export interface ProductListQuery {
productCategoryId: string
productFunctionId?: string
keyword?: string
pageNo: number
pageSize: number
}
export interface ProductImage {
url: string
fileKey: string
}