Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/Telegram/IEvent.ts

26 lines
298 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
interface EventBody {
photo?: [
{
file_id: string;
},
];
document?: {
file_id: string;
};
video?: {
file_id: string;
};
chat?: {
id: number;
};
from?: {
id: number;
};
}
export interface IEvent {
message?: EventBody;
channel_post?: EventBody;
download_link?: string;
}