linkForwardRefFn
| npm Package | @angular/core |
|---|---|
| Module | import { ForwardRefFn } from '@angular/core'; |
| Source | core/src/di/forward_ref.ts |
linkInterface Overview
interface ForwardRefFn {
(): any
}
linkDescription
An interface that a function passed into forwardRef has to implement.
linkExample
const ref = forwardRef(() => Lock);