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.

supports(objects: any): boolean
      
      supports(objects: any): boolean
    
参数
objects any
返回值

boolean

Create a KeyValueDiffer.

create<K, V>(): KeyValueDiffer<K, V>
      
      create<K, V>(): KeyValueDiffer<K, V>
    
参数

没有参数。

返回值

KeyValueDiffer<K, V>