apply rate feature
This commit is contained in:
@@ -332,11 +332,27 @@ export interface CartItem {
|
||||
uniqueId?: string;
|
||||
}
|
||||
|
||||
export interface User {
|
||||
id: string;
|
||||
export interface UserType {
|
||||
id: number;
|
||||
username: string;
|
||||
email: string;
|
||||
name: string;
|
||||
role: "admin" | "user";
|
||||
mobilenumber: string;
|
||||
device_token: string;
|
||||
password: string;
|
||||
redeem_point: number;
|
||||
customer_image: string;
|
||||
login_taken: string;
|
||||
device: string;
|
||||
social_id: string;
|
||||
otp_number: number;
|
||||
otp_status: number;
|
||||
created_datetime: string;
|
||||
user_uuid: string;
|
||||
is_deleted: number;
|
||||
thawani_customer_id: string;
|
||||
birth_date: string;
|
||||
gender: string;
|
||||
country_id: number;
|
||||
}
|
||||
|
||||
export type Locale = "en" | "ar";
|
||||
|
||||
Reference in New Issue
Block a user