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