UNPKG

reactflow-velocity

Version:

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

10 lines 499 B
import type { ReactFlowState, Node, Edge } from '../types'; declare const createRFStore: ({ nodes, edges, width, height, fitView, }: { nodes?: Node<any, string | undefined>[] | undefined; edges?: Edge<any>[] | undefined; width?: number | undefined; height?: number | undefined; fitView?: boolean | undefined; }) => import("zustand/traditional").UseBoundStoreWithEqualityFn<import("zustand").StoreApi<ReactFlowState>>; export { createRFStore }; //# sourceMappingURL=index.d.ts.map