UNPKG

@selenite/graph-editor

Version:

A graph editor for visual programming, based on rete and svelte.

10 lines (9 loc) 322 B
type Props = { /** Minimap size in rem. */ size?: number; /** View proprortion under which the view should be displayed. Defaults to 1. */ displayViewThreshold?: number; }; declare const Minimap: import("svelte").Component<Props, {}, "">; type Minimap = ReturnType<typeof Minimap>; export default Minimap;