UNPKG

reactflow-velocity

Version:

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

10 lines 428 B
import type { Edge, Node, ReactFlowStore } from '../types'; declare const getInitialState: ({ nodes, edges, width, height, fitView, }?: { nodes?: Node<any, string | undefined>[] | undefined; edges?: Edge<any>[] | undefined; width?: number | undefined; height?: number | undefined; fitView?: boolean | undefined; }) => ReactFlowStore; export default getInitialState; //# sourceMappingURL=initialState.d.ts.map