primeng
Version:
PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB
38 lines (37 loc) • 847 B
TypeScript
import { TemplateRef } from '@angular/core';
/**
* Paginator state.
* @group Interface
*/
export interface PaginatorState {
page?: number;
first?: number;
rows?: number;
pageCount?: number;
}
/**
* Defines valid templates in PaginatorTemplates.
* @group Templates
*/
export interface PaginatorTemplates {
/**
* Custom dropdown trigger icon template.
*/
dropdownicon(): TemplateRef<any>;
/**
* Custom first page link icon template.
*/
firstpagelinkicon(): TemplateRef<any>;
/**
* Custom previous page link icon template.
*/
previouspagelinkicon(): TemplateRef<any>;
/**
* Custom last page link icon template.
*/
lastpagelinkicon(): TemplateRef<any>;
/**
* Custom next page link icon template.
*/
nextpagelinkicon(): TemplateRef<any>;
}