| 3 | import type { IConfirmDialogButton } from '@/components/common/ConfirmDialog'; |
| 4 | |
| 5 | interface AlertDialogConfig { |
| 6 | title: string; |
| 7 | message: string; |
| 8 | buttons: IConfirmDialogButton[]; |
| 9 | } |
| 10 | |
| 11 | interface UseAlertDialogReturn { |
| 12 | /** Whether the alert dialog is visible. */ |
nothing calls this directly
no outgoing calls
no test coverage detected