mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
baa1ee1ad2
* 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;
|
|
}
|