mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
17 lines
208 B
TypeScript
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;
|
|
}
|