@selenite/graph-editor
Version:
A graph editor for visual programming, based on rete and svelte.
13 lines (12 loc) • 446 B
JavaScript
/**
* This namespace contains nodes that are used to control the flow of the program.
*
* For example, the every node can be used to execute a node every x runs. Another example is the for each node, which can be used to iterate over a list of items.
* @module
*/
export * from './EveryNode';
export * from './ForEachNode';
export * from './SequenceNode';
export * from './StartNode';
export * from './TimeLoopNode';
export * from './time';