UNPKG

@etherspot/data-utils

Version:
8 lines (6 loc) 156 B
declare abstract class PaginationResult<T = any> { abstract items?: T[]; currentPage: number; nextPage: number; } export { PaginationResult };