UNPKG

@matthewgapp/solidjs-flow

Version:

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

13 lines 465 B
import type { Node, Edge } from '../../types'; import { ParentProps } from 'solid-js'; export type ReactFlowProviderProps = { initialNodes?: Node[]; initialEdges?: Edge[]; defaultNodes?: Node[]; defaultEdges?: Edge[]; initialWidth?: number; initialHeight?: number; fitView?: boolean; }; export declare function ReactFlowProvider(p: ParentProps<ReactFlowProviderProps>): import("solid-js").JSX.Element; //# sourceMappingURL=index.d.ts.map