react-native-app-notification
Version:
In-app custom notifications for React-Native
7 lines (6 loc) • 389 B
TypeScript
import { FunctionComponent } from 'react';
import { AppNotificationComponentProps, AppNotificationStyleProps, NotificationQueueItem } from '../types';
declare type OwnProps = AppNotificationStyleProps;
declare type Props = OwnProps & NotificationQueueItem & AppNotificationComponentProps;
export declare const AppNotificationUI: FunctionComponent<Props>;
export default AppNotificationUI;