Merge pull request #2741 from tugcekucukoglu/paginator

Fixed #2738 - Paginator: slot typescript error
pull/2742/head
Tuğçe Küçükoğlu 2022-07-01 09:55:21 +03:00 committed by GitHub
commit f9bda1f6ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ export interface PaginatorSlots {
* Current state * Current state
* @see PageState * @see PageState
*/ */
currentState: PageState; state: PageState;
}) => VNode[]; }) => VNode[];
/** /**
* Custom end template. * Custom end template.
@ -98,7 +98,7 @@ export interface PaginatorSlots {
* Current state * Current state
* @see PageState * @see PageState
*/ */
currentState: PageState; state: PageState;
}) => VNode[]; }) => VNode[];
} }