From 9d77346aabcc7b572299ca0285efebc9c25dbea2 Mon Sep 17 00:00:00 2001 From: Mario Romano Date: Fri, 27 Jan 2017 15:55:55 +0000 Subject: [PATCH] fix type issue --- .../src/components/pagination/pagination.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ng2-components/ng2-alfresco-datatable/src/components/pagination/pagination.component.ts b/ng2-components/ng2-alfresco-datatable/src/components/pagination/pagination.component.ts index c689de3ae9..3643ac9c65 100644 --- a/ng2-components/ng2-alfresco-datatable/src/components/pagination/pagination.component.ts +++ b/ng2-components/ng2-alfresco-datatable/src/components/pagination/pagination.component.ts @@ -41,13 +41,13 @@ export class PaginationComponent implements OnInit, OnChanges { pagination: Pagination; @Output() - changePageSize: EventEmitter = new EventEmitter(); + changePageSize: EventEmitter = new EventEmitter(); @Output() - nextPage: EventEmitter = new EventEmitter(); + nextPage: EventEmitter = new EventEmitter(); @Output() - prevPage: EventEmitter = new EventEmitter(); + prevPage: EventEmitter = new EventEmitter(); constructor() { }