mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
chore(components): use {} for empty props
This commit is contained in:
@@ -47,10 +47,10 @@ export interface ToastProps extends Pick<ToastRootProps, 'defaultOpen' | 'open'
|
||||
export interface ToastEmits extends ToastRootEmits {}
|
||||
|
||||
export interface ToastSlots {
|
||||
leading(props?: any): any
|
||||
title(props?: any): any
|
||||
description(props?: any): any
|
||||
actions(props?: any): any
|
||||
leading(props?: {}): any
|
||||
title(props?: {}): any
|
||||
description(props?: {}): any
|
||||
actions(props?: {}): any
|
||||
close(props: { class: string }): any
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user