import { NgModule } from '@angular/core'; import { IgxMaskDirective } from './mask.directive'; /** * @hidden * IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components */ @NgModule({ imports: [IgxMaskDirective], exports: [IgxMaskDirective] }) export class IgxMaskModule { }