typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
14 lines (13 loc) • 550 B
TypeScript
/**
* ## KeyboardButtonPollType
* This object represents type of a poll, which is allowed to be created and sent when the corresponding button is
* pressed.
* @see https://core.telegram.org/bots/api#keyboardbuttonpolltype
*/
export type KeyboardButtonPollType = {
/**
* Optional. If quiz is passed, the user will be allowed to create only polls in the quiz mode. If regular is passed,
* only regular polls will be allowed. Otherwise, the user will be allowed to create a poll of any type.
*/
type?: 'quiz' | 'regular';
};