telegramsjs
    Preparing search index...

    Interface CommonMessageEntity

    interface CommonMessageEntity {
        length: number;
        offset: number;
        type:
            | "bold"
            | "code"
            | "phone_number"
            | "email"
            | "mention"
            | "hashtag"
            | "cashtag"
            | "bot_command"
            | "url"
            | "italic"
            | "underline"
            | "strikethrough"
            | "spoiler"
            | "blockquote"
            | "expandable_blockquote";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    length: number

    Length of the entity in UTF-16 code units

    offset: number

    Offset in UTF-16 code units to the start of the entity

    type:
        | "bold"
        | "code"
        | "phone_number"
        | "email"
        | "mention"
        | "hashtag"
        | "cashtag"
        | "bot_command"
        | "url"
        | "italic"
        | "underline"
        | "strikethrough"
        | "spoiler"
        | "blockquote"
        | "expandable_blockquote"

    Type of the entity. Currently, can be “mention” (@username), “hashtag” (#hashtag), “cashtag” ($USD), “bot_command” (/start@jobs_bot), “url” (https://telegram.org), “email” (do-not-reply@telegram.org), “phone_number” (+1-212-555-0123), “bold” (bold text), “italic” (italic text), “underline” (underlined text), “strikethrough” (strikethrough text), “spoiler” (spoiler message), “blockquote” (block quotation), “expandable_blockquote” (collapsed-by-default block quotation), “code” (monowidth string), “pre” (monowidth block), “text_link” (for clickable text URLs), “text_mention” (for users without usernames), “custom_emoji” (for inline custom emoji stickers)