mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
20 lines
586 B
TypeScript
20 lines
586 B
TypeScript
import {PaginationComponentOptions} from './pagination-component-options.model';
|
|
import {SortOptions} from '../../core/cache/models/sort-options.model';
|
|
|
|
|
|
/**
|
|
* The pagination event that contains updated pagination properties
|
|
* for a given view
|
|
*/
|
|
export interface PaginationChangeEvent {
|
|
/**
|
|
* The pagination component object that contains id, current page, max size, page size options, and page size
|
|
*/
|
|
pagination: PaginationComponentOptions;
|
|
|
|
/**
|
|
* The sort options object that contains which field to sort by and the sorting direction
|
|
*/
|
|
sort: SortOptions;
|
|
}
|