import { GestureResponderEvent } from 'react-native'; export interface DbAlertDialogProps { /** * 弹窗是否可见 */ visible: boolean; /** * 弹窗标题 */ title?: string; /** * 弹窗消息 */ message: string; /** * 确认按钮文字 */ confirmText?: string; /** * 确认按钮点击事件 */ onConfirm?: (e: GestureResponderEvent) => void; /** * 取消按钮文字 */ cancelText?: string; /** * 取消按钮点击事件 */ onCancel?: (e: GestureResponderEvent) => void; }