import { NgModule } from '@angular/core'; import { InputDecimalPlacesDirective, } from './input-decimal-places.directive'; @NgModule({ declarations: [ InputDecimalPlacesDirective, ], exports: [ InputDecimalPlacesDirective, ], }) export class InputDecimalPlacesModule { }