В app.module.ts
добавить в массив объявлений:
declarations: [SerchPendingPipe]
Ваш app.module.ts выглядит следующим образом:
import { SerchPendingPipe} from 'your_path'; // use control + dot to get the IntelliSense
@NgModule({
declarations: [
.. your components,
SerchPendingPipe
],
imports: [
.. Modules
],
providers: [
..
]
})
export class AppModule { }