UNPKG

@xyflow/svelte

Version:

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

11 lines (10 loc) 297 B
type $$ComponentProps = { x?: number; y?: number; width?: number | string; height?: number | string; isVisible?: boolean; }; declare const Selection: import("svelte").Component<$$ComponentProps, {}, "">; type Selection = ReturnType<typeof Selection>; export default Selection;