UNPKG

n8n

Version:

n8n Workflow Automation Tool

9 lines (8 loc) 316 B
import { Request } from 'express'; import type { INodeTypeDescription } from 'n8n-workflow'; import { NodeTypes } from '../node-types'; export declare class NodeTypesController { private readonly nodeTypes; constructor(nodeTypes: NodeTypes); getNodeInfo(req: Request): Promise<INodeTypeDescription[]>; }