@selenite/graph-editor
Version:
A graph editor for visual programming, based on rete and svelte.
13 lines (12 loc) • 392 B
TypeScript
type Props = {
editor: NodeEditor;
formId?: string;
existingGraph?: StoredGraph;
};
import type { NodeEditor } from '../editor';
import type { StoredGraph } from './types';
declare const MacroBlockForm: import("svelte").Component<Props, {
getResponse: () => Promise<StoredGraph>;
}, "">;
type MacroBlockForm = ReturnType<typeof MacroBlockForm>;
export default MacroBlockForm;