mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
* Add option `Include Download Link` * ⚡ Add File->Get to Telegram Node Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
14 lines
159 B
TypeScript
14 lines
159 B
TypeScript
export interface IEvent {
|
|
message?: {
|
|
photo?: [
|
|
{
|
|
file_id: string,
|
|
},
|
|
],
|
|
document?: {
|
|
file_id: string;
|
|
},
|
|
};
|
|
download_link?: string;
|
|
}
|