On this page
KeyValueDiffer
interface
A differ that tracks changes made to an object over time.
interface KeyValueDiffer<K, V> {
  diff(object: Map<K, V>): KeyValueChanges<K, V> | null
}
   Methods
| 
         
          diff() 
          | 
      |||
|---|---|---|---|
Compute a difference between the previous state and the new   | 
      |||
        
          | 
      
object | 
            object | 
            containing the new value.  | 
           
Returns
KeyValueChanges<string, V> | null: an object describing the difference. The return value is only valid until the next diff() invocation.
© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
 https://v11.angular.io/api/core/KeyValueDiffer