UNPKG

ngx-ui-scroll

Version:

Infinite/virtual scroll for Angular

19 lines 683 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { UiScrollComponent } from './ui-scroll.component'; import { UiScrollDirective } from './ui-scroll.directive'; export class UiScrollModule { } UiScrollModule.decorators = [ { type: NgModule, args: [{ declarations: [ UiScrollComponent, UiScrollDirective ], imports: [CommonModule], entryComponents: [UiScrollComponent], exports: [UiScrollDirective], providers: [] },] } ]; //# sourceMappingURL=ui-scroll.module.js.map