JoltDebugFn typedef

JoltDebugFn = void Function(DebugNodeOperationType type, ReactiveNode node)

Function type for debugging reactive system operations.

This callback is invoked whenever a debug operation occurs, allowing you to track the lifecycle and behavior of reactive nodes.

Parameters:

  • type: The type of operation that occurred
  • node: The reactive node involved in the operation

Implementation

typedef JoltDebugFn = void Function(
  DebugNodeOperationType type,
  ReactiveNode node,
);