UNPKG

validator-pk

Version:

A lightweight library for validating and formatting Pakistani phone numbers and CNIC.

25 lines (21 loc) 583 B
import { NgModule } from '@angular/core'; import { ValidatorPKComponent } from './validator-pk.component'; import { ValidatorPkDirective } from './validator-pk.directive'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { CommonModule } from '@angular/common'; @NgModule({ declarations: [ ValidatorPKComponent, ValidatorPkDirective ], imports: [ FormsModule, ReactiveFormsModule, CommonModule ], exports: [ ValidatorPKComponent, ValidatorPkDirective ] }) export class ValidatorPKModule { }