export forwardRef(forwardRefFn: ForwardRefFn) : Type
export forwardRef(forwardRefFn: ForwardRefFn) : Type
exported from angular2/core defined in angular2/src/core/di/forward_ref.ts (line 10)
Allows to refer to references which are not yet defined.
For instance, forwardRef
is used when the token
which we need to refer to for the purposes of
DI is declared,
but not yet defined. It is also used when the token
which we use when creating a query is not
yet defined.