UNPKG

n8n-nodes-node-inspector

Version:

Exposes an API endpoint to list all registered n8n nodes with their properties.

6 lines (5 loc) 273 B
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class NodeInspector implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }