I have the following code:
const myObj = {
        reply(text: string, options?: Bot.SendMessageOptions)
        {
            return bot.sendMessage(msg.chat.id, text, { reply_to_message_id: msg.message_id, ...options });
        },
        replyMd(text: string, options?: Bot.SendMessageOptions)
        {
            return this.reply(text, { parse_mode: "Markdown" });
        }
};
However, when I call replyMd, then this is undefined. Why?
 
    