@hxui/angular
Version:
* * *
16 lines (15 loc) • 452 B
TypeScript
import { TabularSize } from './tabular-size.enum';
import { ISortByProperty } from './tabular-sort-by.service';
export declare abstract class ITabularConfig {
size: TabularSize;
pagination: {
itemsPerPage: number;
currentPage: number;
};
clickableRows?: boolean;
sortBy?: ISortByProperty[];
cssClass?: string;
stickyHeader?: boolean;
remoteSorting?: boolean;
multiSorting?: boolean;
}