Spaces:
Runtime error
Runtime error
File size: 276 Bytes
142f91b 66ed450 70b8e47 142f91b 70b8e47 66ed450 |
1 2 3 4 5 6 7 8 |
import { writable } from 'svelte/store';
import { type ZoomTransform, zoomIdentity } from 'd3-zoom';
export const loadingState = writable<string>('');
export const isLoading = writable<boolean>(false);
export const currZoomTransform = writable<ZoomTransform>(zoomIdentity);
|