• Overview
@angular/forms

ControlEvent

Class
stable

Base class for every event sent by AbstractControl.events()

API

    
      abstract class ControlEvent<T = any> {  abstract readonly source: AbstractControl<unknown, unknown, any>;}
    
    

source

AbstractControl<unknown, unknown, any>

Form control from which this event is originated.

Note: the type of the control can't be infered from T as the event can be emitted by any of child controls

Jump to details