@salla.sa/twilight-components
Version:
Salla Web Component
28 lines (27 loc) • 534 B
TypeScript
export interface IMenuItem {
title: string;
icon: string;
color: string;
updates: number;
}
export interface UserAcount {
avatar: string;
birthday: string;
currency: string;
email: string;
first_name: string;
gender: string;
id: number;
language: string;
last_name: string;
phone: Phone;
}
export interface Phone {
code: string;
number: number;
country: string;
}
export interface UpdateResponse {
notificationsUpdate: number;
pendingOrdersUpdate: number;
}