types.ts
826 Bytes
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
export interface SalesDetails {
product: Product
buyer: Buyer
date: string
payment: Payment
}
export interface Product {
id: number
name: string
slug: string
brand: string
category: string
price: number
image: string
hasFreeShipping: boolean
rating: number
description: string
}
export interface Buyer {
name: string
avatar: string | null
}
export interface Payment {
total: number
receivedPaymentStatus: string
paidAmount: number
status: string
}
export interface Data {
responsiveId: string
id: number
avatar: string
fullName: string
post: string
email: string
city: string
startDate: string
salary: number
age: string | number
experience: string
status: number
}