UNPKG

@hxui/angular

Version:

This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.

12 lines (11 loc) 340 B
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[]; }