n8n-nodes-xcredentialsx
Version:
Enhanced n8n nodes for credentials management and improved node execution with dropdown selection
13 lines (12 loc) • 666 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
export declare class RunNodeWithCredentialsXImproved implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getCredentials(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getWorkflows(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getNodesFromWorkflow(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}