Merge remote-tracking branch 'origin/demo' into starter

This commit is contained in:
sercan 2021-08-31 10:18:08 +03:00
commit cf5f13d78e

View File

@ -1,5 +1,3 @@
import { Contact } from 'app/modules/admin/apps/chat/chat.types';
export interface Notification export interface Notification
{ {
id: string; id: string;
@ -31,3 +29,31 @@ export interface Chat
createdAt?: string; createdAt?: string;
}[]; }[];
} }
export interface Contact
{
id?: string;
avatar?: string;
name?: string;
about?: string;
details?: {
emails?: {
email?: string;
label?: string;
}[];
phoneNumbers?: {
country?: string;
phoneNumber?: string;
label?: string;
}[];
title?: string;
company?: string;
birthday?: string;
address?: string;
};
attachments?: {
media?: any[];
docs?: any[];
links?: any[];
};
}