Event fired when the control's touched status changes (touched <=> untouched).
API
class TouchedChangeEvent extends ControlEvent {
constructor(touched: boolean, source: AbstractControl<any, any, any>): TouchedChangeEvent;
readonly override touched: boolean;
readonly override source: AbstractControl<any, any, any>;
}