<input type="text" [ngModel]="mymodel" (ngModelChange)="valuechange($event)" />
{{mymodel}}
valuechange(newValue) {
mymodel = newValue;
console.log(newValue)
}
<input type="radio" (change)="handleChange($event)" />
<input type="text" class="form-control" (input)="onSearchChange($event.target.value)">