UNPKG

@selenite/graph-editor

Version:

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

10 lines (9 loc) 324 B
interface 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;