KeyValueDifferFactory
interface
stable
Provides a factory for KeyValueDiffer.
API
interface KeyValueDifferFactory { supports(objects: any): boolean; create<K, V>(): KeyValueDiffer<K, V>;}
supports
booleanTest to see if the differ knows how to diff this kind of object.
@paramobjects
any@returns
booleancreate
KeyValueDiffer<K, V>Create a KeyValueDiffer.
@returns
KeyValueDiffer<K, V>Jump to details