Download images and files with Telegram Trigger (#919)

*  Download images and files.

*  Improvements

*  Small improvements
This commit is contained in:
Ricardo Espinoza
2020-09-04 04:28:04 -04:00
committed by GitHub
parent dcded3b96b
commit a032c5448d
3 changed files with 156 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
export interface IEvent {
message?: {
photo?: [
{
file_id: string,
},
],
document?: {
file_id: string;
},
};
}