n8n-nodes-imap-ai
Version:
Simplified IMAP node for n8n with AI-agent support. Clean and modular email and mailbox management for automation workflows.
7 lines (6 loc) • 309 B
TypeScript
import { ImapFlow } from 'imapflow';
import { IExecuteFunctions } from 'n8n-workflow';
import { IImapOperation } from '../utils/types';
export declare class DeleteEmailOperation implements IImapOperation {
execute(executeFunctions: IExecuteFunctions, client: ImapFlow, itemIndex: number): Promise<any>;
}