1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/Telegram/IEvent.ts
Ricardo Espinoza a032c5448d
Download images and files with Telegram Trigger ()
*  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;
},
};
}