ChatItem.

interface ChatItem {
    content?: string;
    status?: string;
    timestamp?: number;
    type?: string;
}

Properties

content?: string
status?: string
timestamp?: number
type?: string