UNPKG

@wireapp/api-client

Version:

Wire API Client to send and receive data.

14 lines (13 loc) 316 B
import { ConversationMembers } from '../conversation'; interface Conversation { access?: string[]; creator: string; id: string; last_event_time: string; last_event: string; members: ConversationMembers; name?: string; team: string; type: 0 | 1 | 2 | 3; } export { Conversation };