mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
fix type issue
This commit is contained in:
@@ -41,13 +41,13 @@ export class PaginationComponent implements OnInit, OnChanges {
|
|||||||
pagination: Pagination;
|
pagination: Pagination;
|
||||||
|
|
||||||
@Output()
|
@Output()
|
||||||
changePageSize: EventEmitter<Pagination> = new EventEmitter();
|
changePageSize: EventEmitter<Pagination> = new EventEmitter<Pagination>();
|
||||||
|
|
||||||
@Output()
|
@Output()
|
||||||
nextPage: EventEmitter<Pagination> = new EventEmitter();
|
nextPage: EventEmitter<Pagination> = new EventEmitter<Pagination>();
|
||||||
|
|
||||||
@Output()
|
@Output()
|
||||||
prevPage: EventEmitter<Pagination> = new EventEmitter();
|
prevPage: EventEmitter<Pagination> = new EventEmitter<Pagination>();
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user