UNPKG

@selenite/graph-editor

Version:

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

13 lines (12 loc) 394 B
import type { NodeEditor } from '../editor'; import type { StoredGraph } from './types'; interface Props { editor: NodeEditor; formId?: string; existingGraph?: StoredGraph; } declare const MacroBlockForm: import("svelte").Component<Props, { getResponse: () => Promise<StoredGraph>; }, "">; type MacroBlockForm = ReturnType<typeof MacroBlockForm>; export default MacroBlockForm;