mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-24 00:40:34 +01:00
chore(components): use {} for empty props
This commit is contained in:
@@ -33,14 +33,14 @@ export interface DrawerProps extends Pick<DrawerRootProps, 'activeSnapPoint' | '
|
||||
export interface DrawerEmits extends DrawerRootEmits {}
|
||||
|
||||
export interface DrawerSlots {
|
||||
default(props?: any): any
|
||||
handle(props?: any): any
|
||||
content(props?: any): any
|
||||
header(props?: any): any
|
||||
title(props?: any): any
|
||||
description(props?: any): any
|
||||
body(props?: any): any
|
||||
footer(props?: any): any
|
||||
default(props?: {}): any
|
||||
handle(props?: {}): any
|
||||
content(props?: {}): any
|
||||
header(props?: {}): any
|
||||
title(props?: {}): any
|
||||
description(props?: {}): any
|
||||
body(props?: {}): any
|
||||
footer(props?: {}): any
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user