UNPKG

@xyflow/svelte

Version:

Svelte Flow - A highly customizable Svelte library for building node-based editors, workflow systems, diagrams and more.

18 lines (17 loc) 484 B
import type { ClassValue } from 'svelte/elements'; type $$ComponentProps = { x: number; y: number; width: number; height: number; borderRadius?: number; color?: string; shapeRendering: string; strokeColor?: string; strokeWidth?: number; selected?: boolean; class?: ClassValue; }; declare const MinimapNode: import("svelte").Component<$$ComponentProps, {}, "">; type MinimapNode = ReturnType<typeof MinimapNode>; export default MinimapNode;