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
boolean
create
KeyValueDiffer<K, V>Create a KeyValueDiffer.
@returns
KeyValueDiffer<K, V>