@mobilelivenpm/fds-angular-qa
Version:
This library was generated with [Nx](https://nx.dev).
19 lines (18 loc) • 686 B
TypeScript
import { SortMeta } from './table.helpers';
export declare class TableService {
private sortSource;
private selectionSource;
private valueSource;
private columnsSource;
private resetSource;
sortSource$: import("rxjs").Observable<SortMeta | SortMeta[]>;
selectionSource$: import("rxjs").Observable<unknown>;
valueSource$: import("rxjs").Observable<any>;
columnsSource$: import("rxjs").Observable<unknown>;
resetSource$: import("rxjs").Observable<unknown>;
onSort(sortMeta: SortMeta | SortMeta[]): void;
onSelectionChange(): void;
onResetChange(): void;
onValueChange(value: any): void;
onColumnsChange(columns: any[]): void;
}