// todo: split import { Injectable } from '@angular/core'; /** Provides default values for Pagination and pager components */ @Injectable() export class PaginationConfig { main: any = { maxSize: void 0, itemsPerPage: 10, boundaryLinks: false, directionLinks: true, firstText: 'First', previousText: 'Previous', nextText: 'Next', lastText: 'Last', pageBtnClass: '', rotate: true }; pager: any = { itemsPerPage: 15, previousText: '« Previous', nextText: 'Next »', pageBtnClass: '', align: true }; }