import { ShortConversation } from './conversations'; export interface StartConversation { UID: string; ppu: string; lastname: string; firstname: string; } export interface UserInboxData { conversations: ShortConversation[]; conversation_with?: StartConversation; }