import { NgModule } from '@angular/core'; import { FormatPaymentCardDirective, } from './format-payment-card.directive'; @NgModule({ declarations: [ FormatPaymentCardDirective, ], exports: [ FormatPaymentCardDirective, ], }) export class FormatPaymentCardModule {}