I used this mask in my app from here:
( https://www.npmjs.com/package/ionic-input-mask ),
followed the instructions ofcourse, installed it and imported it in the app module, yet it shows me the error that it's not a known element.
ERROR MESSAGE:
'input-mask' is not a known element:
- If 'input-mask' is an Angular component, then verify that it is part of this module.
- If 'input-mask' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.Angular
//in the module
import { InputMaskModule } from 'ionic-input-mask';
imports: [
InputMaskModule,
]