UNPKG

reactflow-velocity

Version:

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

11 lines 385 B
import { type ReactNode } from 'react'; import type { Node, Edge } from '../../types'; export declare function Wrapper({ children, nodes, edges, width, height, fitView, }: { children: ReactNode; nodes?: Node[]; edges?: Edge[]; width?: number; height?: number; fitView?: boolean; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Wrapper.d.ts.map