UNPKG

react-native-app-notification

Version:
9 lines (8 loc) 429 B
import { FunctionComponent } from 'react'; import { AppNotificationComponentProps, AppNotificationStyleProps, NotificationQueueItem } from '../types'; declare type OwnProps = AppNotificationStyleProps & { children?: Element; }; declare type Props = OwnProps & NotificationQueueItem & AppNotificationComponentProps; export declare const AppNotificationWrapper: FunctionComponent<Props>; export default AppNotificationWrapper;