mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-26 01:40:34 +01:00
fix: define empty props in slots for nuxt-component-meta parsing
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user