interface ParsedFragment {
    content: string;
    data?: object;
    language?: string;
    mimeType?: string;
    type: "mention" | "link" | "text" | "invoice" | "media" | "cashu" | "hashtag" | "custom_emoji" | "highlighted_text" | "code_block";
}

Properties

content: string
data?: object
language?: string
mimeType?: string
type: "mention" | "link" | "text" | "invoice" | "media" | "cashu" | "hashtag" | "custom_emoji" | "highlighted_text" | "code_block"

Generated using TypeDoc