File size: 869 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { type CoordinateExtent, type NodeOrigin } from '@xyflow/system';
import type { Node, Edge } from '../types';
import type { SvelteFlowStore } from './types';
export declare const key: unique symbol;
export declare function createStore({ nodes, edges, width, height, fitView: fitViewOnCreate, nodeOrigin, nodeExtent }: {
    nodes?: Node[];
    edges?: Edge[];
    width?: number;
    height?: number;
    fitView?: boolean;
    nodeOrigin?: NodeOrigin;
    nodeExtent?: CoordinateExtent;
}): SvelteFlowStore;
export declare function useStore(): SvelteFlowStore;
export declare function createStoreContext({ nodes, edges, width, height, fitView, nodeOrigin, nodeExtent }: {
    nodes?: Node[];
    edges?: Edge[];
    width?: number;
    height?: number;
    fitView?: boolean;
    nodeOrigin?: NodeOrigin;
    nodeExtent?: CoordinateExtent;
}): SvelteFlowStore;