typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
13 lines (12 loc) • 367 B
TypeScript
import { User } from './';
/**
* ## VideoChatParticipantsInvited
* This object represents a service message about new members invited to a video chat.
* @see https://core.telegram.org/bots/api#videochatparticipantsinvited
*/
export type VideoChatParticipantsInvited = {
/**
* New members that were invited to the video chat
*/
users: User[];
};