@ -33,6 +33,7 @@ TelegramBot
* [.sendDocument(chatId, doc, [options], [fileOpts])](#TelegramBot+sendDocument) ⇒ < code > Promise< / code >
* [.sendDocument(chatId, doc, [options], [fileOpts])](#TelegramBot+sendDocument) ⇒ < code > Promise< / code >
* [.sendSticker(chatId, sticker, [options])](#TelegramBot+sendSticker) ⇒ < code > Promise< / code >
* [.sendSticker(chatId, sticker, [options])](#TelegramBot+sendSticker) ⇒ < code > Promise< / code >
* [.sendVideo(chatId, video, [options])](#TelegramBot+sendVideo) ⇒ < code > Promise< / code >
* [.sendVideo(chatId, video, [options])](#TelegramBot+sendVideo) ⇒ < code > Promise< / code >
* [.sendVideoNote(chatId, videoNote, [options])](#TelegramBot+sendVideoNote) ⇒ < code > Promise< / code >
* [.sendVoice(chatId, voice, [options])](#TelegramBot+sendVoice) ⇒ < code > Promise< / code >
* [.sendVoice(chatId, voice, [options])](#TelegramBot+sendVoice) ⇒ < code > Promise< / code >
* [.sendChatAction(chatId, action) ](#TelegramBot+sendChatAction ) ⇒ < code > Promise</ code >
* [.sendChatAction(chatId, action) ](#TelegramBot+sendChatAction ) ⇒ < code > Promise</ code >
* [.kickChatMember(chatId, userId) ](#TelegramBot+kickChatMember ) ⇒ < code > Promise</ code >
* [.kickChatMember(chatId, userId) ](#TelegramBot+kickChatMember ) ⇒ < code > Promise</ code >
@ -338,6 +339,21 @@ Use this method to send video files, Telegram clients support mp4 videos (other
| video | < code > String</ code > | < code > stream.Stream</ code > | < code > Buffer</ code > | A file path or Stream. Can also be a `file_id` previously uploaded. |
| video | < code > String</ code > | < code > stream.Stream</ code > | < code > Buffer</ code > | A file path or Stream. Can also be a `file_id` previously uploaded. |
| [options] | < code > Object< / code > | Additional Telegram query options |
| [options] | < code > Object< / code > | Additional Telegram query options |
< a name = "TelegramBot+sendVideoNote" > < / a >
### telegramBot.sendVideoNote(chatId, videoNote, [options]) ⇒ < code > Promise< / code >
Use this method to send rounded square videos of upto 1 minute long.
**Kind**: instance method of < code > [TelegramBot](#TelegramBot)< / code >
**Info**: The length parameter is actually optional. However, the API (at time of writing) requires you to always provide it until it is fixed.
**See**: https://core.telegram.org/bots/api#sendvideonote
| Param | Type | Description |
| --- | --- | --- |
| chatId | < code > Number< / code > | < code > String< / code > | Unique identifier for the message recipient |
| videoNote | < code > String</ code > | < code > stream.Stream</ code > | < code > Buffer</ code > | A file path or Stream. Can also be a `file_id` previously uploaded. |
| [options] | < code > Object< / code > | Additional Telegram query options |
< a name = "TelegramBot+sendVoice" > < / a >
< a name = "TelegramBot+sendVoice" > < / a >
### telegramBot.sendVoice(chatId, voice, [options]) ⇒ < code > Promise< / code >
### telegramBot.sendVoice(chatId, voice, [options]) ⇒ < code > Promise< / code >