KeyValueDifferFactory
Provides a factory for KeyValueDiffer
.
interface KeyValueDifferFactory {
supports(objects: any): boolean
create<K, V>(): KeyValueDiffer<K, V>
}
方法
Test to see if the differ knows how to diff this kind of object. |
Create a |