typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
12 lines (11 loc) • 316 B
TypeScript
/**
* ## CopyTextButton
* This object represents an inline keyboard button that copies specified text to the clipboard.
* @see https://core.telegram.org/bots/api#copytextbutton
*/
export type CopyTextButton = {
/**
* The text to be copied to the clipboard; 1-256 characters
*/
text: string;
};