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