Como obter o valor de entrada MAT no KeyUp JavaScript
<input type="text" class="form-control" (input)="onSearchChange($event.target.value)">
onSearchChange(searchValue: string): void {
console.log(searchValue);
}
Sathyendra