• Overview
@angular/core

ForwardRefFn

interface
stable

An interface that a function passed into forwardRef has to implement.

API

    
      interface ForwardRefFn {  (): any;}
    
    

any
@returnsany

Usage Notes

Example

          
const ref = forwardRef(() => Lock);
Jump to details