n8n
Version:
n8n Workflow Automation Tool
10 lines (9 loc) • 485 B
TypeScript
import type { CommunityNodeType } from '@n8n/api-types';
import { Request } from 'express';
import { CommunityNodeTypesService } from '../services/community-node-types.service';
export declare class CommunityNodeTypesController {
private readonly communityNodeTypesService;
constructor(communityNodeTypesService: CommunityNodeTypesService);
getCommunityNodeType(req: Request): Promise<CommunityNodeType | null>;
getCommunityNodeTypes(): Promise<CommunityNodeType[]>;
}