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