n8n/packages/nodes-base/nodes/Telegram/IEvent.ts
Ricardo Espinoza baa1ee1ad2
Add File->Get to Telegram Node (#1242)
* Add option `Include Download Link`

*  Add File->Get to Telegram Node

Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2020-12-29 13:28:50 +01:00

14 lines
159 B
TypeScript

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