'Angular ngx paginate pipe not found in html

I have installed pagination with this command:

npm install ngx-pagination --save

Then added to my app.module

 import {NgxPaginationModule} from 'ngx-pagination';

 imports: [
    HttpClientModule,
    BrowserModule,
    BrowserAnimationsModule,
    AppRoutingModule,
    FormsModule,
    HeaderModule,
    NgxPaginationModule]

But when try to write paginate pipe, the ide tells me that can not resolve what "| paginate" is .
I tried something like this:

<div class="member-entry" *ngFor="let user of users | paginate;let i = index">


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source