UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

26 lines 427 B
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; } export {}; //# sourceMappingURL=IEvent.d.ts.map