pagination-config.d.ts 549 B

12345678910111213141516
  1. /**
  2. * A configuration service for the [`NgbPagination`](#/components/pagination/api#NgbPagination) component.
  3. *
  4. * You can inject this service, typically in your root component, and customize the values of its properties in
  5. * order to provide default values for all the paginations used in the application.
  6. */
  7. export declare class NgbPaginationConfig {
  8. disabled: boolean;
  9. boundaryLinks: boolean;
  10. directionLinks: boolean;
  11. ellipses: boolean;
  12. maxSize: number;
  13. pageSize: number;
  14. rotate: boolean;
  15. size: 'sm' | 'lg';
  16. }