@matthewgapp/solidjs-flow
Version:
React Flow - A highly customizable React library for building node-based editors and interactive flow charts.
8 lines • 434 B
TypeScript
import type { Node, SolidEvent } from '../../types';
export type NodesSelectionProps<NodeType> = {
onSelectionContextMenu?: (event: SolidEvent<HTMLDivElement, MouseEvent>, nodes: NodeType[]) => void;
noPanClassName?: string;
disableKeyboardA11y: boolean;
};
export declare function NodesSelection<NodeType extends Node>(p: NodesSelectionProps<NodeType>): import("solid-js").JSX.Element;
//# sourceMappingURL=index.d.ts.map