chore(components): use {} for empty props

This commit is contained in:
Benjamin Canac
2024-06-28 22:03:14 +02:00
parent 8113c2163c
commit f9c69a7837
30 changed files with 69 additions and 63 deletions

View File

@@ -44,13 +44,13 @@ export interface ModalEmits extends DialogRootEmits {}
export interface ModalSlots {
default(props: { open: boolean }): any
content(props?: any): any
header(props?: any): any
title(props?: any): any
description(props?: any): any
content(props?: {}): any
header(props?: {}): any
title(props?: {}): any
description(props?: {}): any
close(props: { class: string }): any
body(props?: any): any
footer(props?: any): any
body(props?: {}): any
footer(props?: {}): any
}
</script>