n8n/packages/nodes-base/nodes/Telegram/IEvent.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

17 lines
208 B
TypeScript

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