UNPKG

@schoolbelle/common

Version:

15 lines (14 loc) 501 B
import { OnInit, ChangeDetectorRef } from '@angular/core'; import { InfiniteListService } from '../infinite-list.service'; import { Subscription } from 'rxjs'; export declare class InfiniteListInfoComponent implements OnInit { protected cdRef: ChangeDetectorRef; infinite: InfiniteListService; query: string; subscription: Subscription; constructor(cdRef: ChangeDetectorRef); ngOnInit(): void; ngOnDestroy(): void; stopSearching(): void; resumeSearching(): void; }