UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

18 lines (17 loc) 459 B
/** * Constants for pagination configuration of HTTP requests. */ export declare enum PaginationParams { /** * Size of page - maximal number of elements per page. */ PAGE_SIZE = "size", /** * Requested page index. 0 based. */ PAGE_NUMBER = "page", /** * Sort configuration of the requested page. Use the {@link createSortParam} function to generate the value for this attribute. */ PAGE_SORT = "sort" }