UNPKG

@pubby/sdk

Version:
18 lines (17 loc) 443 B
import { IncomingMessage } from '../incoming-message'; export interface ChatMessage { id: string; fromId?: string; timestamp: number; toId?: string; isLog?: boolean; text: string; replyId?: string; reply?: ChatMessage; user?: any; } export declare class ChatMessageResponse extends IncomingMessage { message: ChatMessage; static id: string; constructor(message: ChatMessage); }