10 lines
489 B
TypeScript
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
|