Fixed #2738 - Paginator: slot typescript error

pull/2741/head
Tuğçe Küçükoğlu 2022-07-01 09:55:05 +03:00
parent 2f3c210a8e
commit d6c178693a
1 changed files with 2 additions and 2 deletions

View File

@ -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[];
}