mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
fix: define empty props in slots for nuxt-component-meta parsing
This commit is contained in:
@@ -42,10 +42,10 @@ export interface ToastProps extends Omit<ToastRootProps, 'asChild' | 'forceMount
|
||||
export interface ToastEmits extends ToastRootEmits {}
|
||||
|
||||
export interface ToastSlots {
|
||||
leading(): any
|
||||
title(): any
|
||||
description(): any
|
||||
actions(): any
|
||||
leading(props?: any): any
|
||||
title(props?: any): any
|
||||
description(props?: any): any
|
||||
actions(props?: any): any
|
||||
close(props: { class: string }): any
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user