projects/angular/directives/ui-scroll-into-view/src/ui-scroll-into-view.module.ts
import { NgModule } from '@angular/core';
import { UiScrollIntoViewDirective } from './ui-scroll-into-view.directive';
@NgModule({
declarations: [UiScrollIntoViewDirective],
exports: [UiScrollIntoViewDirective],
})
export class UiScrollIntoViewModule { }