KeyValueDiffer
interface
A differ that tracks changes made to an object over time.
interface KeyValueDiffer<K, V> { diff(object: any): 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–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v7.angular.io/api/core/KeyValueDiffer