its working fine in local..but while i build this code its got build error like this '"../../../node_modules/ngx-currency"' has no exported member 'CurrencyMaskInputMode'
ngx-currency npm version --> 2.5.3
html file <input type="text" class="form-control currencyMask [options]="options" [(ngModel)]="value">
ts file
import { CurrencyMaskInputMode, NgxCurrencyModule } from "ngx-currency";
options: any = { prefix: '', thousands: '', decimal: '.', precision: '2', align: 'left', inputMode: CurrencyMaskInputMode.NATURAL } value = null
app.module.ts file
import { NgxCurrencyModule } from "ngx-currency";
imports: [
NgxCurrencyModule
]