UNPKG

reactflow-velocity

Version:

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

13 lines 579 B
/** * The nodes selection rectangle gets displayed when a user * made a selection with on or several nodes */ import { type MouseEvent } from 'react'; import type { Node } from '../../types'; export type NodesSelectionProps = { onSelectionContextMenu?: (event: MouseEvent, nodes: Node[]) => void; noPanClassName?: string; disableKeyboardA11y: boolean; }; export declare function NodesSelection({ onSelectionContextMenu, noPanClassName, disableKeyboardA11y }: NodesSelectionProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=index.d.ts.map