mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 09:17:08 +02:00
6 lines
198 B
TypeScript
6 lines
198 B
TypeScript
import type { INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
export function isTool(nodeType: INodeTypeDescription): boolean {
|
|
return nodeType.codex?.subcategories?.AI?.includes('Tools') ?? false;
|
|
}
|