mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
702 B
18 lines
702 B
import { NodeOrigin, CoordinateExtent } from '@xyflow/system';
|
|
import type { Edge, FitViewOptions, Node, ReactFlowStore } from '../types';
|
|
declare const getInitialState: ({ nodes, edges, defaultNodes, defaultEdges, width, height, fitView, fitViewOptions, minZoom, maxZoom, nodeOrigin, nodeExtent, }?: {
|
|
nodes?: Node[];
|
|
edges?: Edge[];
|
|
defaultNodes?: Node[];
|
|
defaultEdges?: Edge[];
|
|
width?: number;
|
|
height?: number;
|
|
fitView?: boolean;
|
|
fitViewOptions?: FitViewOptions;
|
|
minZoom?: number;
|
|
maxZoom?: number;
|
|
nodeOrigin?: NodeOrigin;
|
|
nodeExtent?: CoordinateExtent;
|
|
}) => ReactFlowStore;
|
|
export default getInitialState;
|
|
//# sourceMappingURL=initialState.d.ts.map
|