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