mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-09 03:55:06 +00:00
Merge remote-tracking branch 'origin/demo' into starter
This commit is contained in:
commit
cf5f13d78e
|
@ -1,5 +1,3 @@
|
|||
import { Contact } from 'app/modules/admin/apps/chat/chat.types';
|
||||
|
||||
export interface Notification
|
||||
{
|
||||
id: string;
|
||||
|
@ -31,3 +29,31 @@ export interface Chat
|
|||
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[];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user