OnDelete
The OnDelete
type defines the callback function that is called when nodes or edges are deleted. This callback receives an object containing the deleted nodes and edges.
type OnDelete = (params: { nodes: Node[]; edges: Edge[] }) => void;
Name | Type | Default |
---|---|---|
params | { nodes: NodeType[]; edges: EdgeType[]; } |
Last updated on