ng-jhipster
Version:
A Jhipster util library for Angular 2
28 lines (27 loc) • 615 B
TypeScript
import { JhiConfigService } from '../config.service';
/**
* A component that will take care of item count statistics of a pagination.
*/
export declare class JhiItemCountComponent {
/**
* current page number.
*/
page: number;
/**
* Total number of items.
*/
total: number;
/**
* Number of items per page.
*/
itemsPerPage: number;
/**
* True if the generated application use i18n
*/
i18nEnabled: boolean;
/**
* "translate-values" JSON of the template
*/
i18nValues(): string;
constructor(config: JhiConfigService);
}