reactflow-velocity
Version:
React Flow - A highly customizable React library for building node-based editors and interactive flow charts.
11 lines • 449 B
TypeScript
import { type ReactNode } from 'react';
import type { Node, Edge } from '../../types';
export declare function ReactFlowProvider({ children, initialNodes, initialEdges, initialWidth, initialHeight, fitView, }: {
children: ReactNode;
initialNodes?: Node[];
initialEdges?: Edge[];
initialWidth?: number;
initialHeight?: number;
fitView?: boolean;
}): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map