This is the archived documentation for Angular v6. Please visit angular.io to see documentation for the current version of Angular.

ResolvedReflectiveFactory

An internal resolved representation of a factory function created by resolving Provider.

      
      class ResolvedReflectiveFactory {
  constructor(factory: Function, dependencies: ReflectiveDependency[])
  factory: Function
  dependencies: ReflectiveDependency[]
}
    

Constructor

constructor(factory: Function, dependencies: ReflectiveDependency[])
      
      constructor(factory: Function, dependencies: ReflectiveDependency[])
    

Parameters

factory

Factory function which can return an instance of an object represented by a key.

dependencies

Arguments (dependencies) to the factory function.

Properties

Property Description
factory: Function

Factory function which can return an instance of an object represented by a key.

Declared in constructor.
dependencies: ReflectiveDependency[]

Arguments (dependencies) to the factory function.

Declared in constructor.