An interface that a function passed into forwardRef has to implement.
API
interface ForwardRefFn {
(): any;
}
any
@returns
any
Usage Notes
Example
const ref = forwardRef(() => Lock);
An interface that a function passed into forwardRef has to implement.
interface ForwardRefFn {
(): any;
}
anyany
const ref = forwardRef(() => Lock);
Super-powered by Google ©2010–2025.
Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.
https://angular.dev/api/core/ForwardRefFn