UNPKG

615 BTypeScriptView Raw
1import { JhiConfigService } from '../config.service';
2/**
3 * A component that will take care of item count statistics of a pagination.
4 */
5export declare class JhiItemCountComponent {
6 /**
7 * current page number.
8 */
9 page: number;
10 /**
11 * Total number of items.
12 */
13 total: number;
14 /**
15 * Number of items per page.
16 */
17 itemsPerPage: number;
18 /**
19 * True if the generated application use i18n
20 */
21 i18nEnabled: boolean;
22 constructor(config: JhiConfigService);
23 /**
24 * "translate-values" JSON of the template
25 */
26 i18nValues(): Object;
27}