n8n-nodes-cleverflow
Version:
n8n node to integrate with CleverFlow API for creating workflow runs and processing Tally Forms
14 lines (13 loc) • 573 B
TypeScript
import { INodeType, INodeTypeDescription, IExecuteFunctions } from 'n8n-workflow';
import * as loadOptionsMethods from './methods/loadOptions';
export declare class CleverFlow implements INodeType {
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<any[]>;
methods: {
loadOptions: {
getWorkspaces: typeof loadOptionsMethods.getWorkspaces;
getWorkflows: typeof loadOptionsMethods.getWorkflows;
getWorkflowFields: typeof loadOptionsMethods.getWorkflowFields;
};
};
}