UNPKG

truly-ui

Version:

Web Components for Desktop Applications.

10 lines 259 B
import { ChatContact } from './chat-contact.interface'; export interface ChatMessage { id: string; to: ChatContact; from: ChatContact; message: string; time: Date; viewed: boolean; } //# sourceMappingURL=chat-message.interface.d.ts.map