@tuanltntu/n8n-nodes-bitrix24
Version:
Comprehensive n8n community node for Bitrix24 API integration with CRM, Tasks, Chat, Telephony, and more
16 lines (15 loc) • 620 B
TypeScript
import { IExecuteFunctions, INodeExecutionData } from "n8n-workflow";
import { ResourceHandlerBase } from "./handlers/ResourceHandlerBase";
/**
* Factory class for creating resource handlers
*/
export declare class ResourceHandlerFactory {
/**
* Create a resource handler
* @param resource The resource to create a handler for
* @param executeFunctions The execute functions
* @param returnData The return data
* @returns The resource handler
*/
static createHandler(resource: string, executeFunctions: IExecuteFunctions, returnData: INodeExecutionData[]): ResourceHandlerBase;
}