Update index.d.ts

This commit is contained in:
lagleki
2018-09-01 12:38:17 +03:00
committed by GitHub
parent dca219eb5c
commit 7d8daee7dc

View File

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