UNPKG

@matthewgapp/solidjs-flow

Version:

React Flow - A highly customizable React library for building node-based editors and interactive flow charts.

10 lines 357 B
import type { InternalNode, Node } from '../types'; /** * Hook for getting an internal node by id * * @public * @param id - id of the node * @returns array with visible node ids */ export declare function useInternalNode<NodeType extends Node = Node>(id: string): () => InternalNode<NodeType> | undefined; //# sourceMappingURL=useInternalNode.d.ts.map