UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 279 B
/** * ## VideoChatEnded * This object represents a service message about a video chat ended in the chat. * @see https://core.telegram.org/bots/api#videochatended */ export type VideoChatEnded = { /** * Video chat duration in seconds */ duration: number; };