fix: define empty props in slots for nuxt-component-meta parsing

This commit is contained in:
Benjamin Canac
2024-06-28 11:45:14 +02:00
parent 84d814f88b
commit 369e0b1952
28 changed files with 62 additions and 62 deletions

View File

@@ -75,11 +75,11 @@ export interface PaginationProps extends Omit<PaginationRootProps, 'asChild'> {
export interface PaginationEmits extends PaginationRootEmits {}
export interface PaginationSlots {
first(): any
prev(): any
next(): any
last(): any
ellipsis(): any
first(props?: any): any
prev(props?: any): any
next(props?: any): any
last(props?: any): any
ellipsis(props?: any): any
item(props: {
page: number
pageCount: number