import { NgModule } from "@angular/core"; import { MaxLengthErrorPipe, MaxValueErrorPipe, MinValueErrorPipe, MinLengthErrorPipe, RequiredFieldErrorPipe, TrueFalsePipe } from "./index"; @NgModule({ declarations: [ MaxLengthErrorPipe, MaxValueErrorPipe, MinValueErrorPipe, MinLengthErrorPipe, RequiredFieldErrorPipe, TrueFalsePipe ], imports: [], exports: [ MaxLengthErrorPipe, MaxValueErrorPipe, MinValueErrorPipe, MinLengthErrorPipe, RequiredFieldErrorPipe, TrueFalsePipe ], providers: [ MaxLengthErrorPipe, MaxValueErrorPipe, MinValueErrorPipe, MinLengthErrorPipe, RequiredFieldErrorPipe, TrueFalsePipe ] }) export class FssCustomPipesModule {}