UNPKG

549 BTypeScriptView Raw
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 */
7export 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}