Provides a factory for IterableDiffer.
IterableDiffer
interface IterableDifferFactory { supports(objects: any): boolean; create<V>(trackByFn?: TrackByFunction<V> | undefined): IterableDiffer<V>;}