импортировал этот фильтр
// search module
import { Ng2SearchPipeModule } from 'ng2-search-filter';
HTML-код для него
//search
<input class="form-control" type="text" name="search" [(ngModel)]="searchText" autocomplete="off" placeholder="search">
//Assigned filter to table
<tr *ngFor="let bookName of NameOfBookList | filter:searchText">
Любая помощь будет оценена.