mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Download images and files with Telegram Trigger (#919)
* ⚡ Download images and files. * ⚡ Improvements * ⚡ Small improvements
This commit is contained in:
12
packages/nodes-base/nodes/Telegram/IEvent.ts
Normal file
12
packages/nodes-base/nodes/Telegram/IEvent.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface IEvent {
|
||||
message?: {
|
||||
photo?: [
|
||||
{
|
||||
file_id: string,
|
||||
},
|
||||
],
|
||||
document?: {
|
||||
file_id: string;
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user