n8n/packages/nodes-base/nodes/Telegram/IEvent.ts
Ricardo Espinoza a032c5448d
Download images and files with Telegram Trigger (#919)
*  Download images and files.

*  Improvements

*  Small improvements
2020-09-04 10:28:04 +02:00

13 lines
134 B
TypeScript

export interface IEvent {
message?: {
photo?: [
{
file_id: string,
},
],
document?: {
file_id: string;
},
};
}