UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

13 lines (12 loc) 381 B
/** * ## SentWebAppMessage * Describes an inline message sent by a Web App on behalf of a user. * @see https://core.telegram.org/bots/api#sentwebappmessage */ export type SentWebAppMessage = { /** * Optional. Identifier of the sent inline message. Available only if there is an inline keyboard attached to the * message. */ inline_message_id: string; };