UNPKG

swiftui-react-native

Version:

A React Native component library inspired by SwiftUI

12 lines (11 loc) 274 B
import { BooleanBinding } from '../binding'; export type Alert = { isPresented: BooleanBinding; title: string; message?: string; actions?: { title: string; action?: () => void; role?: 'default' | 'cancel' | 'destructive'; }[]; };