UNPKG

ngx-wachat

Version:

Chat UI Component for Angular Applications.

8 lines (7 loc) 188 B
import { ChatContact } from './chat-contact.interface'; export interface ChatMessage { origin: ChatContact; destination: ChatContact; message: string; date: Date; }