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