/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { OnDestroy } from '@angular/core'; import { BehaviorSubject, Observable } from 'rxjs'; import { VtsTableData, VtsTableFilterFn, VtsTableFilterValue, VtsTableQueryParams, VtsTableSortFn, VtsTableSortOrder } from './table.types'; import * as i0 from "@angular/core"; export declare class VtsTableDataService implements OnDestroy { private destroy$; private pageIndex$; private frontPagination$; private pageSize$; private listOfData$; pageIndexDistinct$: Observable; pageSizeDistinct$: Observable; listOfCalcOperator$: BehaviorSubject<{ key?: string; sortFn: VtsTableSortFn | null | boolean; sortOrder: VtsTableSortOrder; filterFn: VtsTableFilterFn | null | boolean; filterValue: VtsTableFilterValue; sortPriority: number | boolean; }[]>; queryParams$: Observable; private listOfDataAfterCalc$; private listOfFrontEndCurrentPageData$; listOfCurrentPageData$: Observable; total$: Observable; updatePageSize(size: number): void; updateFrontPagination(pagination: boolean): void; updatePageIndex(index: number): void; updateListOfData(list: ReadonlyArray): void; constructor(); ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }