I have a custom form control component in my Angular application, which implements ControlValueAccessor interface.
ControlValueAccessor
However, I want to access the F
F
As @Ritesh has already written in the comment you can pass form control as an input binding:
And then you can get form control instance inside your custom form component like this:
@Input() control: FormControl;