UNPKG

@xyflow/svelte

Version:

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

6 lines (5 loc) 264 B
import type { HandleProps } from './types'; /** The Handle component is the part of a node that can be used to connect nodes. */ declare const Handle: import("svelte").Component<HandleProps, {}, "">; type Handle = ReturnType<typeof Handle>; export default Handle;