UNPKG

651 BTypeScriptView Raw
1import { ElementRef, AfterViewInit, OnInit, OnDestroy, NgZone } from '@angular/core';
2import { TreeVirtualScroll } from '../models/tree-virtual-scroll.model';
3import { Cancelable } from 'lodash';
4export declare class TreeViewportComponent implements AfterViewInit, OnInit, OnDestroy {
5 private elementRef;
6 private ngZone;
7 virtualScroll: TreeVirtualScroll;
8 setViewport: (() => void) & Cancelable;
9 private readonly scrollEventHandler;
10 constructor(elementRef: ElementRef, ngZone: NgZone, virtualScroll: TreeVirtualScroll);
11 ngOnInit(): void;
12 ngAfterViewInit(): void;
13 ngOnDestroy(): void;
14 getTotalHeight(): string;
15}
16
\No newline at end of file