Add missing fields to Video interface

See https://core.telegram.org/bots/api#video
This commit is contained in:
lagleki
2018-09-01 12:15:32 +03:00
committed by GitHub
parent 6ef608b70c
commit dca219eb5c

View File

@@ -372,11 +372,13 @@ declare namespace TelegramBot {
}
interface Video {
file_id: string;
width: number;
height: number;
duration: number;
thumb?: PhotoSize;
mime_type?: string;
file_size: number;
}
interface Voice extends FileBase {