From d6c178693af56207f39cddc67297eb0ce341bbe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 1 Jul 2022 09:55:05 +0300 Subject: [PATCH] Fixed #2738 - Paginator: slot typescript error --- src/components/paginator/Paginator.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/paginator/Paginator.d.ts b/src/components/paginator/Paginator.d.ts index 45d7b936f..8d4771e6b 100755 --- a/src/components/paginator/Paginator.d.ts +++ b/src/components/paginator/Paginator.d.ts @@ -87,7 +87,7 @@ export interface PaginatorSlots { * Current state * @see PageState */ - currentState: PageState; + state: PageState; }) => VNode[]; /** * Custom end template. @@ -98,7 +98,7 @@ export interface PaginatorSlots { * Current state * @see PageState */ - currentState: PageState; + state: PageState; }) => VNode[]; }