@ctodev/cclibrary-typings
Version:
Library typings for use with CLARC INFINITY
13 lines (12 loc) • 439 B
TypeScript
import { ElementRef, OnInit, AfterViewInit, EventEmitter, OnDestroy } from '@angular/core';
export declare class TccInfinityScrollDirective implements OnInit, OnDestroy, AfterViewInit {
private anchor;
scrolled: EventEmitter<any>;
ScrollEnabled: boolean;
ViewContainerDistance: number;
private observer;
constructor(anchor: ElementRef);
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
}