projects/core/utils/transition-tracker.ts
import { ValueTransition } from '@cngx/core/utils'
Reactive current/previous pair for arbitrary value transitions.
Replaces the imperative let previous pattern inside effect() calls with a fully reactive, linkedSignal-based approach.
let previous
effect()
linkedSignal
Signal
The current value.
The value before the most recent change.