UNPKG

745 BTypeScriptView Raw
1import * as i0 from "@angular/core";
2/**
3 * A configuration service for the [`NgbPagination`](#/components/pagination/api#NgbPagination) component.
4 *
5 * You can inject this service, typically in your root component, and customize the values of its properties in
6 * order to provide default values for all the paginations used in the application.
7 */
8export declare class NgbPaginationConfig {
9 disabled: boolean;
10 boundaryLinks: boolean;
11 directionLinks: boolean;
12 ellipses: boolean;
13 maxSize: number;
14 pageSize: number;
15 rotate: boolean;
16 size: 'sm' | 'lg' | string | null;
17 static ɵfac: i0.ɵɵFactoryDeclaration<NgbPaginationConfig, never>;
18 static ɵprov: i0.ɵɵInjectableDeclaration<NgbPaginationConfig>;
19}