KeyValueDiffer
A differ that tracks changes made to an object over time.
interface KeyValueDiffer<K, V> {
diff(object: Map<K, V>): KeyValueChanges<K, V> | null
diff(object: { [key: string]: V; }): KeyValueChanges<string, V> | null
}
Methods
diff() | |||
---|---|---|---|
Compute a difference between the previous state and the new |
|||
Parameters
Returns
|
|||
Parameters
Returns
|