UNPKG

xbccs

Version:

customer service

15 lines (14 loc) 354 B
export interface IConversation { conversationId: number | string; userId?: number | string; } export interface IConversationDetail { conversationId?: number | string; conversationType: string; userId?: number | string; } export interface IComment { conversationId: number | string; service: number; suggestion?: string; }