Interface Message

interface Message {
    editable?: boolean;
    is_markdown_support?: boolean;
    link?: string;
    style?: Style;
    text: string;
    type: "message";
}

Properties

editable?: boolean
is_markdown_support?: boolean
link?: string
style?: Style
text: string
type: "message"