UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 271 B
/** * ## WebAppInfo * Describes a Web App. * @see https://core.telegram.org/bots/api#webappinfo */ export type WebAppInfo = { /** * An HTTPS URL of a Web App to be opened with additional data as specified in Initializing Web Apps */ url: string; };