UNPKG

@xyflow/svelte

Version:

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

9 lines (8 loc) 330 B
import type { Component } from 'svelte'; import type { MiniMapNodeProps } from './types'; type $$ComponentProps = MiniMapNodeProps & { nodeComponent?: Component<MiniMapNodeProps>; }; declare const MinimapNode: Component<$$ComponentProps, {}, "">; type MinimapNode = ReturnType<typeof MinimapNode>; export default MinimapNode;