There is not direct way provided by ng2 to react on touched event. It uses (input) event to fire the valueChanges event and (blur) event to set touched/untouched property of AbstractControl.
So you need to manually subscribe on desired event in the template and handle it in your component class.