n8n-nodes-imap-ai
Version:
Simplified IMAP node for n8n with AI-agent support. Clean and modular email and mailbox management for automation workflows.
14 lines (13 loc) • 637 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Imap implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getMailboxes(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodePropertyOptions[]>;
};
listSearch: {
getMailboxes(this: import("n8n-workflow").ILoadOptionsFunctions, filter?: string): Promise<import("n8n-workflow").INodeListSearchResult>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}