UNPKG

n8n-nodes-discord-dnd

Version:
13 lines (12 loc) 473 B
import { Client } from "discord.js"; import { IDataObject, IExecuteFunctions } from "n8n-workflow"; export declare class ActionEventHandler { private readonly client; private readonly actionInstance; constructor(client: Client, actionInstance: IExecuteFunctions); /** * Fetch all users who have RSVP'd (interested) in a guild scheduled event */ private fetchEventInterestedUsers; setupEventHandler(action: string): Promise<IDataObject>; }