UNPKG

@questlabs/react-native-sdk

Version:
26 lines (22 loc) 550 B
import { ImageStyle, TextStyle, ViewStyle } from "react-native/types"; export type Props = { children: ChildNode; title?: string; visible?: boolean; notificationView?: ViewStyle; tinyLogo?: ImageStyle; headerText?: TextStyle; headerView?: ViewStyle; detailView?: ViewStyle; detailText?: TextStyle; timeOut?: number; }; export type NotificationContext = { onClose?: () => {}; showNotification: () => {}; }; export type showNotificationProps = { image?: any; title: string; detail?: string; };