Refactor #3832 Refactor #3833 - For Paginator

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-07 09:48:00 +03:00
parent fba52967d1
commit 1646da534e
8 changed files with 82 additions and 12 deletions

View file

@ -120,6 +120,22 @@ export interface PaginatorSlots {
*/
state: PageState;
}): VNode[];
/**
* Custom first page link icon template.
*/
firstpagelinkicon(): VNode[];
/**
* Custom previous page link icon template.
*/
prevpagelinkicon(): VNode[];
/**
* Custom finextrst page link icon template.
*/
nextpagelinkicon(): VNode[];
/**
* Custom last page link icon template.
*/
lastpagelinkicon(): VNode[];
}
/**