fix(alert): add alert popup types

This commit is contained in:
en 2025-02-14 13:07:11 +01:00
parent ed42f481e6
commit f8e770d952

View File

@ -6,4 +6,6 @@ export interface AlertPopupProps extends PopupProps {
header: string
label: string
handleConfirm: (confirm: boolean) => void
yesButtonLabel?: string | undefined
noButtonLabel?: string | undefined
}