UNPKG

reactflow-velocity

Version:

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

8 lines 610 B
/// <reference types="react" /> import { GraphViewProps } from '../GraphView'; export type NodeRendererProps = Pick<GraphViewProps, 'onNodeClick' | 'onNodeDoubleClick' | 'onNodeMouseEnter' | 'onNodeMouseMove' | 'onNodeMouseLeave' | 'onNodeContextMenu' | 'onlyRenderVisibleElements' | 'noPanClassName' | 'noDragClassName' | 'rfId' | 'disableKeyboardA11y' | 'nodeOrigin' | 'nodeExtent' | 'nodeTypes'>; export declare const NodeRenderer: import("react").MemoExoticComponent<{ (props: NodeRendererProps): import("react/jsx-runtime").JSX.Element; displayName: string; }>; //# sourceMappingURL=index.d.ts.map