Files
n8n-nodes-gwezz-changdunovel/node_modules/n8n-workflow/dist/esm/common/get-connected-nodes.d.ts
2025-10-26 23:10:15 +08:00

10 lines
489 B
TypeScript

import type { IConnections, NodeConnectionType } from '../interfaces';
/**
* Gets all the nodes which are connected nodes starting from
* the given one
*
* @param {NodeConnectionType} [type='main']
* @param {*} [depth=-1]
*/
export declare function getConnectedNodes(connections: IConnections, nodeName: string, connectionType?: NodeConnectionType | 'ALL' | 'ALL_NON_MAIN', depth?: number, checkedNodesIncoming?: string[]): string[];
//# sourceMappingURL=get-connected-nodes.d.ts.map