Registry
The registry is a collection of all the nodes and value types that are available in the system.
In order to add a node or value type to the registry, you need to use the register function, usually inside your profile’s register function.
import { Registry } from '@kiberon-labs/behave-graph';
const registry = new Registry();
const { nodes, values } = registry;
// Register a value typevalues.register(MyValueTypeDescription);
// Register a nodenodes.register(MyNodeDescription);