mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-08 19:45:08 +00:00
(QuickChat) Don't use types from outside
This commit is contained in:
parent
138a43da59
commit
7e0cc1249e
|
@ -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[];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user