typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
12 lines (11 loc) • 375 B
TypeScript
/**
* ## MessageAutoDeleteTimerChanged
* This object represents a service message about a change in auto-delete timer settings.
* @see https://core.telegram.org/bots/api#messageautodeletetimerchanged
*/
export type MessageAutoDeleteTimerChanged = {
/**
* New auto-delete time for messages in the chat; in seconds
*/
message_auto_delete_time: number;
};