skip to content
yaebal
yaebal
guide introduction yaebal meta getting started create a bot core concepts examples cheat sheet newtyped examples newfaq newtroubleshooting new
core context & filters contexts (autogen) media & files hooks & errors webhooks & deploy
telegram guides payments & stars newinline mode newchat admin newservice events newmessage extras newdeep links newmini apps new
migration from gramio newfrom puregram newfrom grammy newfrom telegraf new
plugins / state overview authoring session i18n scenes onboarding conversation prompt morda
plugins / ui keyboard callback-data pagination fmt (markdown/html) rich (sendRichMessage) newfilters commands
plugins / media files media-cache media-group split preview
plugins / ops again throttle ratelimiter broadcast panel
scaling web (edge) production newrunner workers runtimes router toml newtest
reference bot api reference new@yaebal/types llms newpackages map
github opens in a new tab
Available types

InlineKeyboardMarkup

This object represents an inline keyboard that appears right next to the message it belongs to.

fields

fieldtyperequireddescription
inline_keyboardInlineKeyboardButton[][]requiredArray of button rows, each represented by an Array of InlineKeyboardButton objects

import

types.ts
import type { InlineKeyboardMarkup } from "@yaebal/types";

used by

methods

  • copyMessage
  • editMessageCaption
  • editMessageChecklist
  • editMessageLiveLocation
  • editMessageMedia
  • editMessageReplyMarkup
  • editMessageText
  • sendAnimation
  • sendAudio
  • sendChecklist
  • sendContact
  • sendDice
  • sendDocument
  • sendGame
  • sendInvoice
  • sendLivePhoto
  • sendLocation
  • sendMessage
  • sendPaidMedia
  • sendPhoto
  • sendPoll
  • sendRichMessage
  • sendSticker
  • sendVenue
  • sendVideo
  • sendVideoNote
  • sendVoice
  • stopMessageLiveLocation
  • stopPoll

types

  • InlineQueryResultArticle
  • InlineQueryResultAudio
  • InlineQueryResultCachedAudio
  • InlineQueryResultCachedDocument
  • InlineQueryResultCachedGif
  • InlineQueryResultCachedMpeg4Gif
  • InlineQueryResultCachedPhoto
  • InlineQueryResultCachedSticker
  • InlineQueryResultCachedVideo
  • InlineQueryResultCachedVoice
  • InlineQueryResultContact
  • InlineQueryResultDocument
  • InlineQueryResultGame
  • InlineQueryResultGif
  • InlineQueryResultLocation
  • InlineQueryResultMpeg4Gif
  • InlineQueryResultPhoto
  • InlineQueryResultVenue
  • InlineQueryResultVideo
  • InlineQueryResultVoice
  • Message
official Bot API docs: https://core.telegram.org/bots/api/#inlinekeyboardmarkup
edit this page